Models
Types

Models

VerificationToken

Name Value
@@unique
  • identifier
  • token
@@index
  • identifier
  • token

Fields

Name Type Attributes Required Comment
identifier String
  • -
Yes -
token String
  • @unique
Yes -
expires DateTime
  • -
Yes -

Operations

findUnique

Find zero or one VerificationToken

// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first VerificationToken

// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereInput No
orderBy VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput No
cursor VerificationTokenWhereUniqueInput No
take Int No
skip Int No
distinct VerificationTokenScalarFieldEnum | VerificationTokenScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more VerificationToken

// Get all VerificationToken
const VerificationToken = await prisma.verificationToken.findMany()
// Get first 10 VerificationToken
const VerificationToken = await prisma.verificationToken.findMany({ take: 10 })

Input

Name Type Required
where VerificationTokenWhereInput No
orderBy VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput No
cursor VerificationTokenWhereUniqueInput No
take Int No
skip Int No
distinct VerificationTokenScalarFieldEnum | VerificationTokenScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one VerificationToken

// Create one VerificationToken
const VerificationToken = await prisma.verificationToken.create({
  data: {
    // ... data to create a VerificationToken
  }
})

Input

Name Type Required
data VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one VerificationToken

// Delete one VerificationToken
const VerificationToken = await prisma.verificationToken.delete({
  where: {
    // ... filter to delete one VerificationToken
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one VerificationToken

// Update one VerificationToken
const verificationToken = await prisma.verificationToken.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput Yes
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more VerificationToken

// Delete a few VerificationToken
const { count } = await prisma.verificationToken.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one VerificationToken

const { count } = await prisma.verificationToken.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VerificationTokenUpdateManyMutationInput | VerificationTokenUncheckedUpdateManyInput Yes
where VerificationTokenWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one VerificationToken

// Update or create a VerificationToken
const verificationToken = await prisma.verificationToken.upsert({
  create: {
    // ... data to create a VerificationToken
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the VerificationToken we want to update
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes
create VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput Yes
update VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Account

Name Value
@@unique
  • provider
  • providerAccountId
@@index
  • provider
  • providerAccountId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
userId String
  • -
Yes -
type String
  • -
Yes -
provider String
  • -
Yes -
providerAccountId String
  • -
Yes -
refresh_token String?
  • -
No -
access_token String?
  • -
No -
oath_token String?
  • -
No -
oauth_token_secret String?
  • -
No -
expires_at Int?
  • -
No -
token_type String?
  • -
No -
scope String?
  • -
No -
id_token String?
  • -
No -
session_state String?
  • -
No -
user User
  • -
Yes -

Operations

findUnique

Find zero or one Account

// Get one Account
const account = await prisma.account.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

findFirst

Find first Account

// Get one Account
const account = await prisma.account.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereInput No
orderBy AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput No
cursor AccountWhereUniqueInput No
take Int No
skip Int No
distinct AccountScalarFieldEnum | AccountScalarFieldEnum[] No

Output

Type: Account
Required: No
List: No

findMany

Find zero or more Account

// Get all Account
const Account = await prisma.account.findMany()
// Get first 10 Account
const Account = await prisma.account.findMany({ take: 10 })

Input

Name Type Required
where AccountWhereInput No
orderBy AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput No
cursor AccountWhereUniqueInput No
take Int No
skip Int No
distinct AccountScalarFieldEnum | AccountScalarFieldEnum[] No

Output

Type: Account
Required: Yes
List: Yes

create

Create one Account

// Create one Account
const Account = await prisma.account.create({
  data: {
    // ... data to create a Account
  }
})

Input

Name Type Required
data AccountCreateInput | AccountUncheckedCreateInput Yes

Output

Type: Account
Required: Yes
List: No

delete

Delete one Account

// Delete one Account
const Account = await prisma.account.delete({
  where: {
    // ... filter to delete one Account
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

update

Update one Account

// Update one Account
const account = await prisma.account.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AccountUpdateInput | AccountUncheckedUpdateInput Yes
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

deleteMany

Delete zero or more Account

// Delete a few Account
const { count } = await prisma.account.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Account

const { count } = await prisma.account.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AccountUpdateManyMutationInput | AccountUncheckedUpdateManyInput Yes
where AccountWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Account

// Update or create a Account
const account = await prisma.account.upsert({
  create: {
    // ... data to create a Account
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Account we want to update
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes
create AccountCreateInput | AccountUncheckedCreateInput Yes
update AccountUpdateInput | AccountUncheckedUpdateInput Yes

Output

Type: Account
Required: Yes
List: No

Session

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
sessionToken String
  • @unique
Yes -
expires DateTime
  • -
Yes -
userId String
  • -
Yes -
user User
  • -
Yes -

Operations

findUnique

Find zero or one Session

// Get one Session
const session = await prisma.session.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

findFirst

Find first Session

// Get one Session
const session = await prisma.session.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereInput No
orderBy SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput No
cursor SessionWhereUniqueInput No
take Int No
skip Int No
distinct SessionScalarFieldEnum | SessionScalarFieldEnum[] No

Output

Type: Session
Required: No
List: No

findMany

Find zero or more Session

// Get all Session
const Session = await prisma.session.findMany()
// Get first 10 Session
const Session = await prisma.session.findMany({ take: 10 })

Input

Name Type Required
where SessionWhereInput No
orderBy SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput No
cursor SessionWhereUniqueInput No
take Int No
skip Int No
distinct SessionScalarFieldEnum | SessionScalarFieldEnum[] No

Output

Type: Session
Required: Yes
List: Yes

create

Create one Session

// Create one Session
const Session = await prisma.session.create({
  data: {
    // ... data to create a Session
  }
})

Input

Name Type Required
data SessionCreateInput | SessionUncheckedCreateInput Yes

Output

Type: Session
Required: Yes
List: No

delete

Delete one Session

// Delete one Session
const Session = await prisma.session.delete({
  where: {
    // ... filter to delete one Session
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

update

Update one Session

// Update one Session
const session = await prisma.session.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SessionUpdateInput | SessionUncheckedUpdateInput Yes
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

deleteMany

Delete zero or more Session

// Delete a few Session
const { count } = await prisma.session.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Session

const { count } = await prisma.session.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SessionUpdateManyMutationInput | SessionUncheckedUpdateManyInput Yes
where SessionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Session

// Update or create a Session
const session = await prisma.session.upsert({
  create: {
    // ... data to create a Session
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Session we want to update
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes
create SessionCreateInput | SessionUncheckedCreateInput Yes
update SessionUpdateInput | SessionUncheckedUpdateInput Yes

Output

Type: Session
Required: Yes
List: No

User

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
name String
  • -
Yes -
screen_name String
  • @unique
  • @default(cuid())
Yes -
location String?
  • -
No -
url String?
  • -
No -
description String?
  • -
No -
detail String?
  • -
No -
protected Boolean
  • @default(false)
Yes -
verified Boolean
  • @default(false)
Yes -
email String?
  • @unique
No -
emailVerified DateTime?
  • -
No -
google_id String?
  • @unique
No -
google_username String?
  • @unique
No -
google_email String?
  • @unique
No -
discord_id String?
  • @unique
No -
discord_username String?
  • @unique
No -
discord_email String?
  • @unique
No -
twitter_id String?
  • @unique
No -
twitter_username String?
  • @unique
No -
twitter_email String?
  • @unique
No -
image String?
  • -
No -
password String?
  • -
No -
role UserRole
  • @default(USER)
Yes -
created_at DateTime
  • @default(now())
Yes -
followers_count Int
  • @default(0)
Yes -
friends_count Int
  • @default(0)
Yes -
favorites_count Int
  • @default(0)
Yes -
statuses_count Int
  • @default(0)
Yes -
reputation_count Float
  • @default(0)
Yes -
normalized_reputation Int
  • @default(0)
Yes -
profile_banner_url String?
  • -
No -
profile_image_url String?
  • -
No -
evm_address String?
  • @unique
No -
bech32_address String?
  • @unique
No -
cryptoLoginNonce CryptoLoginNonce?
  • -
No -
accounts Account[]
  • -
Yes -
sessions Session[]
  • -
Yes -
tweets Tweet[]
  • -
Yes -
likes Like[]
  • -
Yes -
reputations Reputation[]
  • -
Yes -
votes Vote[]
  • -
Yes -
followers Follower[]
  • -
Yes -
following Follower[]
  • -
Yes -
transactions Transaction[]
  • -
Yes -
retweets Retweet[]
  • -
Yes -
bookmarks Bookmark[]
  • -
Yes -
sent_messages Message[]
  • -
Yes -
received_messages Message[]
  • -
Yes -
conversations Conversation[]
  • -
Yes -
pinned_tweet Tweet?
  • -
No -
pinned_tweet_id String?
  • -
No -

Operations

findUnique

Find zero or one User

// Get one User
const user = await prisma.user.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

findFirst

Find first User

// Get one User
const user = await prisma.user.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: No
List: No

findMany

Find zero or more User

// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: Yes
List: Yes

create

Create one User

// Create one User
const User = await prisma.user.create({
  data: {
    // ... data to create a User
  }
})

Input

Name Type Required
data UserCreateInput | UserUncheckedCreateInput Yes

Output

Type: User
Required: Yes
List: No

delete

Delete one User

// Delete one User
const User = await prisma.user.delete({
  where: {
    // ... filter to delete one User
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

update

Update one User

// Update one User
const user = await prisma.user.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateInput | UserUncheckedUpdateInput Yes
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

deleteMany

Delete zero or more User

// Delete a few User
const { count } = await prisma.user.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one User

const { count } = await prisma.user.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateManyMutationInput | UserUncheckedUpdateManyInput Yes
where UserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one User

// Update or create a User
const user = await prisma.user.upsert({
  create: {
    // ... data to create a User
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the User we want to update
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes
create UserCreateInput | UserUncheckedCreateInput Yes
update UserUpdateInput | UserUncheckedUpdateInput Yes

Output

Type: User
Required: Yes
List: No

Follower

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
follower User
  • -
Yes -
follower_id String
  • -
Yes -
followed User
  • -
Yes -
followed_id String
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Follower

// Get one Follower
const follower = await prisma.follower.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowerWhereUniqueInput Yes

Output

Type: Follower
Required: No
List: No

findFirst

Find first Follower

// Get one Follower
const follower = await prisma.follower.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowerWhereInput No
orderBy FollowerOrderByWithRelationInput[] | FollowerOrderByWithRelationInput No
cursor FollowerWhereUniqueInput No
take Int No
skip Int No
distinct FollowerScalarFieldEnum | FollowerScalarFieldEnum[] No

Output

Type: Follower
Required: No
List: No

findMany

Find zero or more Follower

// Get all Follower
const Follower = await prisma.follower.findMany()
// Get first 10 Follower
const Follower = await prisma.follower.findMany({ take: 10 })

Input

Name Type Required
where FollowerWhereInput No
orderBy FollowerOrderByWithRelationInput[] | FollowerOrderByWithRelationInput No
cursor FollowerWhereUniqueInput No
take Int No
skip Int No
distinct FollowerScalarFieldEnum | FollowerScalarFieldEnum[] No

Output

Type: Follower
Required: Yes
List: Yes

create

Create one Follower

// Create one Follower
const Follower = await prisma.follower.create({
  data: {
    // ... data to create a Follower
  }
})

Input

Name Type Required
data FollowerCreateInput | FollowerUncheckedCreateInput Yes

Output

Type: Follower
Required: Yes
List: No

delete

Delete one Follower

// Delete one Follower
const Follower = await prisma.follower.delete({
  where: {
    // ... filter to delete one Follower
  }
})

Input

Name Type Required
where FollowerWhereUniqueInput Yes

Output

Type: Follower
Required: No
List: No

update

Update one Follower

// Update one Follower
const follower = await prisma.follower.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FollowerUpdateInput | FollowerUncheckedUpdateInput Yes
where FollowerWhereUniqueInput Yes

Output

Type: Follower
Required: No
List: No

deleteMany

Delete zero or more Follower

// Delete a few Follower
const { count } = await prisma.follower.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowerWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Follower

const { count } = await prisma.follower.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FollowerUpdateManyMutationInput | FollowerUncheckedUpdateManyInput Yes
where FollowerWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Follower

// Update or create a Follower
const follower = await prisma.follower.upsert({
  create: {
    // ... data to create a Follower
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Follower we want to update
  }
})

Input

Name Type Required
where FollowerWhereUniqueInput Yes
create FollowerCreateInput | FollowerUncheckedCreateInput Yes
update FollowerUpdateInput | FollowerUncheckedUpdateInput Yes

Output

Type: Follower
Required: Yes
List: No

Transaction

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
user User
  • -
Yes -
user_id String
  • -
Yes -
follower_id String
  • -
Yes -
balance Float
  • -
Yes -
amount Float
  • -
Yes -
description String
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Transaction

// Get one Transaction
const transaction = await prisma.transaction.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TransactionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Transaction

// Get one Transaction
const transaction = await prisma.transaction.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TransactionWhereInput No
orderBy TransactionOrderByWithRelationInput[] | TransactionOrderByWithRelationInput No
cursor TransactionWhereUniqueInput No
take Int No
skip Int No
distinct TransactionScalarFieldEnum | TransactionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Transaction

// Get all Transaction
const Transaction = await prisma.transaction.findMany()
// Get first 10 Transaction
const Transaction = await prisma.transaction.findMany({ take: 10 })

Input

Name Type Required
where TransactionWhereInput No
orderBy TransactionOrderByWithRelationInput[] | TransactionOrderByWithRelationInput No
cursor TransactionWhereUniqueInput No
take Int No
skip Int No
distinct TransactionScalarFieldEnum | TransactionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Transaction

// Create one Transaction
const Transaction = await prisma.transaction.create({
  data: {
    // ... data to create a Transaction
  }
})

Input

Name Type Required
data TransactionCreateInput | TransactionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Transaction

// Delete one Transaction
const Transaction = await prisma.transaction.delete({
  where: {
    // ... filter to delete one Transaction
  }
})

Input

Name Type Required
where TransactionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Transaction

// Update one Transaction
const transaction = await prisma.transaction.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TransactionUpdateInput | TransactionUncheckedUpdateInput Yes
where TransactionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Transaction

// Delete a few Transaction
const { count } = await prisma.transaction.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TransactionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Transaction

const { count } = await prisma.transaction.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TransactionUpdateManyMutationInput | TransactionUncheckedUpdateManyInput Yes
where TransactionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Transaction

// Update or create a Transaction
const transaction = await prisma.transaction.upsert({
  create: {
    // ... data to create a Transaction
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Transaction we want to update
  }
})

Input

Name Type Required
where TransactionWhereUniqueInput Yes
create TransactionCreateInput | TransactionUncheckedCreateInput Yes
update TransactionUpdateInput | TransactionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Tweet

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
text String?
  • -
No -
source String
  • @default(web)
Yes -
in_reply_to_user_id String?
  • -
No -
in_reply_to_screen_name String?
  • -
No -
is_quote_status Boolean
  • @default(false)
Yes -
quoted_status_id String?
  • -
No -
quote_count Int
  • @default(0)
Yes -
reply_count Int
  • @default(0)
Yes -
retweet_count Int
  • @default(0)
Yes -
favorite_count Int
  • @default(0)
Yes -
vote_count Int
  • @default(0)
Yes -
possibly_sensitive Boolean
  • @default(false)
Yes -
lang String
  • @default(en)
Yes -
created_at DateTime
  • @default(now())
Yes -
author User
  • -
Yes -
author_id String
  • -
Yes -
media Media[]
  • -
Yes -
likes Like[]
  • -
Yes -
votes Vote[]
  • -
Yes -
retweets Retweet[]
  • -
Yes -
quotes Tweet[]
  • -
Yes -
quoted_tweet_id String?
  • -
No -
quoted_tweet Tweet?
  • -
No -
comments Tweet[]
  • -
Yes -
in_reply_to_status_id String?
  • -
No -
tweet_comment Tweet?
  • -
No -
bookmarks Bookmark[]
  • -
Yes -
pinned_by_users User[]
  • -
Yes -

Operations

findUnique

Find zero or one Tweet

// Get one Tweet
const tweet = await prisma.tweet.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TweetWhereUniqueInput Yes

Output

Type: Tweet
Required: No
List: No

findFirst

Find first Tweet

// Get one Tweet
const tweet = await prisma.tweet.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TweetWhereInput No
orderBy TweetOrderByWithRelationInput[] | TweetOrderByWithRelationInput No
cursor TweetWhereUniqueInput No
take Int No
skip Int No
distinct TweetScalarFieldEnum | TweetScalarFieldEnum[] No

Output

Type: Tweet
Required: No
List: No

findMany

Find zero or more Tweet

// Get all Tweet
const Tweet = await prisma.tweet.findMany()
// Get first 10 Tweet
const Tweet = await prisma.tweet.findMany({ take: 10 })

Input

Name Type Required
where TweetWhereInput No
orderBy TweetOrderByWithRelationInput[] | TweetOrderByWithRelationInput No
cursor TweetWhereUniqueInput No
take Int No
skip Int No
distinct TweetScalarFieldEnum | TweetScalarFieldEnum[] No

Output

Type: Tweet
Required: Yes
List: Yes

create

Create one Tweet

// Create one Tweet
const Tweet = await prisma.tweet.create({
  data: {
    // ... data to create a Tweet
  }
})

Input

Name Type Required
data TweetCreateInput | TweetUncheckedCreateInput Yes

Output

Type: Tweet
Required: Yes
List: No

delete

Delete one Tweet

// Delete one Tweet
const Tweet = await prisma.tweet.delete({
  where: {
    // ... filter to delete one Tweet
  }
})

Input

Name Type Required
where TweetWhereUniqueInput Yes

Output

Type: Tweet
Required: No
List: No

update

Update one Tweet

// Update one Tweet
const tweet = await prisma.tweet.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TweetUpdateInput | TweetUncheckedUpdateInput Yes
where TweetWhereUniqueInput Yes

Output

Type: Tweet
Required: No
List: No

deleteMany

Delete zero or more Tweet

// Delete a few Tweet
const { count } = await prisma.tweet.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TweetWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Tweet

const { count } = await prisma.tweet.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TweetUpdateManyMutationInput | TweetUncheckedUpdateManyInput Yes
where TweetWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Tweet

// Update or create a Tweet
const tweet = await prisma.tweet.upsert({
  create: {
    // ... data to create a Tweet
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Tweet we want to update
  }
})

Input

Name Type Required
where TweetWhereUniqueInput Yes
create TweetCreateInput | TweetUncheckedCreateInput Yes
update TweetUpdateInput | TweetUncheckedUpdateInput Yes

Output

Type: Tweet
Required: Yes
List: No

Media

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
media_url String
  • -
Yes -
media_type String
  • -
Yes -
media_path String
  • -
Yes -
tweet Tweet?
  • -
No -
tweet_id String?
  • -
No -
Message Message?
  • -
No -
message_id String?
  • -
No -

Operations

findUnique

Find zero or one Media

// Get one Media
const media = await prisma.media.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MediaWhereUniqueInput Yes

Output

Type: Media
Required: No
List: No

findFirst

Find first Media

// Get one Media
const media = await prisma.media.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MediaWhereInput No
orderBy MediaOrderByWithRelationInput[] | MediaOrderByWithRelationInput No
cursor MediaWhereUniqueInput No
take Int No
skip Int No
distinct MediaScalarFieldEnum | MediaScalarFieldEnum[] No

Output

Type: Media
Required: No
List: No

findMany

Find zero or more Media

// Get all Media
const Media = await prisma.media.findMany()
// Get first 10 Media
const Media = await prisma.media.findMany({ take: 10 })

Input

Name Type Required
where MediaWhereInput No
orderBy MediaOrderByWithRelationInput[] | MediaOrderByWithRelationInput No
cursor MediaWhereUniqueInput No
take Int No
skip Int No
distinct MediaScalarFieldEnum | MediaScalarFieldEnum[] No

Output

Type: Media
Required: Yes
List: Yes

create

Create one Media

// Create one Media
const Media = await prisma.media.create({
  data: {
    // ... data to create a Media
  }
})

Input

Name Type Required
data MediaCreateInput | MediaUncheckedCreateInput Yes

Output

Type: Media
Required: Yes
List: No

delete

Delete one Media

// Delete one Media
const Media = await prisma.media.delete({
  where: {
    // ... filter to delete one Media
  }
})

Input

Name Type Required
where MediaWhereUniqueInput Yes

Output

Type: Media
Required: No
List: No

update

Update one Media

// Update one Media
const media = await prisma.media.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MediaUpdateInput | MediaUncheckedUpdateInput Yes
where MediaWhereUniqueInput Yes

Output

Type: Media
Required: No
List: No

deleteMany

Delete zero or more Media

// Delete a few Media
const { count } = await prisma.media.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MediaWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Media

const { count } = await prisma.media.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MediaUpdateManyMutationInput | MediaUncheckedUpdateManyInput Yes
where MediaWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Media

// Update or create a Media
const media = await prisma.media.upsert({
  create: {
    // ... data to create a Media
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Media we want to update
  }
})

Input

Name Type Required
where MediaWhereUniqueInput Yes
create MediaCreateInput | MediaUncheckedCreateInput Yes
update MediaUpdateInput | MediaUncheckedUpdateInput Yes

Output

Type: Media
Required: Yes
List: No

Like

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
tweet Tweet
  • -
Yes -
tweet_id String
  • -
Yes -
user User
  • -
Yes -
user_id String
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Like

// Get one Like
const like = await prisma.like.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LikeWhereUniqueInput Yes

Output

Type: Like
Required: No
List: No

findFirst

Find first Like

// Get one Like
const like = await prisma.like.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LikeWhereInput No
orderBy LikeOrderByWithRelationInput[] | LikeOrderByWithRelationInput No
cursor LikeWhereUniqueInput No
take Int No
skip Int No
distinct LikeScalarFieldEnum | LikeScalarFieldEnum[] No

Output

Type: Like
Required: No
List: No

findMany

Find zero or more Like

// Get all Like
const Like = await prisma.like.findMany()
// Get first 10 Like
const Like = await prisma.like.findMany({ take: 10 })

Input

Name Type Required
where LikeWhereInput No
orderBy LikeOrderByWithRelationInput[] | LikeOrderByWithRelationInput No
cursor LikeWhereUniqueInput No
take Int No
skip Int No
distinct LikeScalarFieldEnum | LikeScalarFieldEnum[] No

Output

Type: Like
Required: Yes
List: Yes

create

Create one Like

// Create one Like
const Like = await prisma.like.create({
  data: {
    // ... data to create a Like
  }
})

Input

Name Type Required
data LikeCreateInput | LikeUncheckedCreateInput Yes

Output

Type: Like
Required: Yes
List: No

delete

Delete one Like

// Delete one Like
const Like = await prisma.like.delete({
  where: {
    // ... filter to delete one Like
  }
})

Input

Name Type Required
where LikeWhereUniqueInput Yes

Output

Type: Like
Required: No
List: No

update

Update one Like

// Update one Like
const like = await prisma.like.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LikeUpdateInput | LikeUncheckedUpdateInput Yes
where LikeWhereUniqueInput Yes

Output

Type: Like
Required: No
List: No

deleteMany

Delete zero or more Like

// Delete a few Like
const { count } = await prisma.like.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LikeWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Like

const { count } = await prisma.like.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LikeUpdateManyMutationInput | LikeUncheckedUpdateManyInput Yes
where LikeWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Like

// Update or create a Like
const like = await prisma.like.upsert({
  create: {
    // ... data to create a Like
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Like we want to update
  }
})

Input

Name Type Required
where LikeWhereUniqueInput Yes
create LikeCreateInput | LikeUncheckedCreateInput Yes
update LikeUpdateInput | LikeUncheckedUpdateInput Yes

Output

Type: Like
Required: Yes
List: No

Reputation

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
user User
  • -
Yes -
user_id String
  • -
Yes -
session_owner_id String
  • -
Yes -
reputation_status String
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Reputation

// Get one Reputation
const reputation = await prisma.reputation.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ReputationWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Reputation

// Get one Reputation
const reputation = await prisma.reputation.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ReputationWhereInput No
orderBy ReputationOrderByWithRelationInput[] | ReputationOrderByWithRelationInput No
cursor ReputationWhereUniqueInput No
take Int No
skip Int No
distinct ReputationScalarFieldEnum | ReputationScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Reputation

// Get all Reputation
const Reputation = await prisma.reputation.findMany()
// Get first 10 Reputation
const Reputation = await prisma.reputation.findMany({ take: 10 })

Input

Name Type Required
where ReputationWhereInput No
orderBy ReputationOrderByWithRelationInput[] | ReputationOrderByWithRelationInput No
cursor ReputationWhereUniqueInput No
take Int No
skip Int No
distinct ReputationScalarFieldEnum | ReputationScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Reputation

// Create one Reputation
const Reputation = await prisma.reputation.create({
  data: {
    // ... data to create a Reputation
  }
})

Input

Name Type Required
data ReputationCreateInput | ReputationUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Reputation

// Delete one Reputation
const Reputation = await prisma.reputation.delete({
  where: {
    // ... filter to delete one Reputation
  }
})

Input

Name Type Required
where ReputationWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Reputation

// Update one Reputation
const reputation = await prisma.reputation.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ReputationUpdateInput | ReputationUncheckedUpdateInput Yes
where ReputationWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Reputation

// Delete a few Reputation
const { count } = await prisma.reputation.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ReputationWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Reputation

const { count } = await prisma.reputation.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ReputationUpdateManyMutationInput | ReputationUncheckedUpdateManyInput Yes
where ReputationWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Reputation

// Update or create a Reputation
const reputation = await prisma.reputation.upsert({
  create: {
    // ... data to create a Reputation
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Reputation we want to update
  }
})

Input

Name Type Required
where ReputationWhereUniqueInput Yes
create ReputationCreateInput | ReputationUncheckedCreateInput Yes
update ReputationUpdateInput | ReputationUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Vote

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
tweet Tweet
  • -
Yes -
tweet_id String
  • -
Yes -
user User
  • -
Yes -
user_id String
  • -
Yes -
vote_status String
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Vote

// Get one Vote
const vote = await prisma.vote.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VoteWhereUniqueInput Yes

Output

Type: Vote
Required: No
List: No

findFirst

Find first Vote

// Get one Vote
const vote = await prisma.vote.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VoteWhereInput No
orderBy VoteOrderByWithRelationInput[] | VoteOrderByWithRelationInput No
cursor VoteWhereUniqueInput No
take Int No
skip Int No
distinct VoteScalarFieldEnum | VoteScalarFieldEnum[] No

Output

Type: Vote
Required: No
List: No

findMany

Find zero or more Vote

// Get all Vote
const Vote = await prisma.vote.findMany()
// Get first 10 Vote
const Vote = await prisma.vote.findMany({ take: 10 })

Input

Name Type Required
where VoteWhereInput No
orderBy VoteOrderByWithRelationInput[] | VoteOrderByWithRelationInput No
cursor VoteWhereUniqueInput No
take Int No
skip Int No
distinct VoteScalarFieldEnum | VoteScalarFieldEnum[] No

Output

Type: Vote
Required: Yes
List: Yes

create

Create one Vote

// Create one Vote
const Vote = await prisma.vote.create({
  data: {
    // ... data to create a Vote
  }
})

Input

Name Type Required
data VoteCreateInput | VoteUncheckedCreateInput Yes

Output

Type: Vote
Required: Yes
List: No

delete

Delete one Vote

// Delete one Vote
const Vote = await prisma.vote.delete({
  where: {
    // ... filter to delete one Vote
  }
})

Input

Name Type Required
where VoteWhereUniqueInput Yes

Output

Type: Vote
Required: No
List: No

update

Update one Vote

// Update one Vote
const vote = await prisma.vote.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VoteUpdateInput | VoteUncheckedUpdateInput Yes
where VoteWhereUniqueInput Yes

Output

Type: Vote
Required: No
List: No

deleteMany

Delete zero or more Vote

// Delete a few Vote
const { count } = await prisma.vote.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VoteWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Vote

const { count } = await prisma.vote.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VoteUpdateManyMutationInput | VoteUncheckedUpdateManyInput Yes
where VoteWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Vote

// Update or create a Vote
const vote = await prisma.vote.upsert({
  create: {
    // ... data to create a Vote
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Vote we want to update
  }
})

Input

Name Type Required
where VoteWhereUniqueInput Yes
create VoteCreateInput | VoteUncheckedCreateInput Yes
update VoteUpdateInput | VoteUncheckedUpdateInput Yes

Output

Type: Vote
Required: Yes
List: No

Retweet

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
tweet Tweet
  • -
Yes -
tweet_id String
  • -
Yes -
user User
  • -
Yes -
user_id String
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Retweet

// Get one Retweet
const retweet = await prisma.retweet.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RetweetWhereUniqueInput Yes

Output

Type: Retweet
Required: No
List: No

findFirst

Find first Retweet

// Get one Retweet
const retweet = await prisma.retweet.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RetweetWhereInput No
orderBy RetweetOrderByWithRelationInput[] | RetweetOrderByWithRelationInput No
cursor RetweetWhereUniqueInput No
take Int No
skip Int No
distinct RetweetScalarFieldEnum | RetweetScalarFieldEnum[] No

Output

Type: Retweet
Required: No
List: No

findMany

Find zero or more Retweet

// Get all Retweet
const Retweet = await prisma.retweet.findMany()
// Get first 10 Retweet
const Retweet = await prisma.retweet.findMany({ take: 10 })

Input

Name Type Required
where RetweetWhereInput No
orderBy RetweetOrderByWithRelationInput[] | RetweetOrderByWithRelationInput No
cursor RetweetWhereUniqueInput No
take Int No
skip Int No
distinct RetweetScalarFieldEnum | RetweetScalarFieldEnum[] No

Output

Type: Retweet
Required: Yes
List: Yes

create

Create one Retweet

// Create one Retweet
const Retweet = await prisma.retweet.create({
  data: {
    // ... data to create a Retweet
  }
})

Input

Name Type Required
data RetweetCreateInput | RetweetUncheckedCreateInput Yes

Output

Type: Retweet
Required: Yes
List: No

delete

Delete one Retweet

// Delete one Retweet
const Retweet = await prisma.retweet.delete({
  where: {
    // ... filter to delete one Retweet
  }
})

Input

Name Type Required
where RetweetWhereUniqueInput Yes

Output

Type: Retweet
Required: No
List: No

update

Update one Retweet

// Update one Retweet
const retweet = await prisma.retweet.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RetweetUpdateInput | RetweetUncheckedUpdateInput Yes
where RetweetWhereUniqueInput Yes

Output

Type: Retweet
Required: No
List: No

deleteMany

Delete zero or more Retweet

// Delete a few Retweet
const { count } = await prisma.retweet.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RetweetWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Retweet

const { count } = await prisma.retweet.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RetweetUpdateManyMutationInput | RetweetUncheckedUpdateManyInput Yes
where RetweetWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Retweet

// Update or create a Retweet
const retweet = await prisma.retweet.upsert({
  create: {
    // ... data to create a Retweet
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Retweet we want to update
  }
})

Input

Name Type Required
where RetweetWhereUniqueInput Yes
create RetweetCreateInput | RetweetUncheckedCreateInput Yes
update RetweetUpdateInput | RetweetUncheckedUpdateInput Yes

Output

Type: Retweet
Required: Yes
List: No

Bookmark

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
tweet Tweet
  • -
Yes -
tweet_id String
  • -
Yes -
user User
  • -
Yes -
user_id String
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Bookmark

// Get one Bookmark
const bookmark = await prisma.bookmark.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BookmarkWhereUniqueInput Yes

Output

Type: Bookmark
Required: No
List: No

findFirst

Find first Bookmark

// Get one Bookmark
const bookmark = await prisma.bookmark.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BookmarkWhereInput No
orderBy BookmarkOrderByWithRelationInput[] | BookmarkOrderByWithRelationInput No
cursor BookmarkWhereUniqueInput No
take Int No
skip Int No
distinct BookmarkScalarFieldEnum | BookmarkScalarFieldEnum[] No

Output

Type: Bookmark
Required: No
List: No

findMany

Find zero or more Bookmark

// Get all Bookmark
const Bookmark = await prisma.bookmark.findMany()
// Get first 10 Bookmark
const Bookmark = await prisma.bookmark.findMany({ take: 10 })

Input

Name Type Required
where BookmarkWhereInput No
orderBy BookmarkOrderByWithRelationInput[] | BookmarkOrderByWithRelationInput No
cursor BookmarkWhereUniqueInput No
take Int No
skip Int No
distinct BookmarkScalarFieldEnum | BookmarkScalarFieldEnum[] No

Output

Type: Bookmark
Required: Yes
List: Yes

create

Create one Bookmark

// Create one Bookmark
const Bookmark = await prisma.bookmark.create({
  data: {
    // ... data to create a Bookmark
  }
})

Input

Name Type Required
data BookmarkCreateInput | BookmarkUncheckedCreateInput Yes

Output

Type: Bookmark
Required: Yes
List: No

delete

Delete one Bookmark

// Delete one Bookmark
const Bookmark = await prisma.bookmark.delete({
  where: {
    // ... filter to delete one Bookmark
  }
})

Input

Name Type Required
where BookmarkWhereUniqueInput Yes

Output

Type: Bookmark
Required: No
List: No

update

Update one Bookmark

// Update one Bookmark
const bookmark = await prisma.bookmark.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BookmarkUpdateInput | BookmarkUncheckedUpdateInput Yes
where BookmarkWhereUniqueInput Yes

Output

Type: Bookmark
Required: No
List: No

deleteMany

Delete zero or more Bookmark

// Delete a few Bookmark
const { count } = await prisma.bookmark.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BookmarkWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Bookmark

const { count } = await prisma.bookmark.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BookmarkUpdateManyMutationInput | BookmarkUncheckedUpdateManyInput Yes
where BookmarkWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Bookmark

// Update or create a Bookmark
const bookmark = await prisma.bookmark.upsert({
  create: {
    // ... data to create a Bookmark
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Bookmark we want to update
  }
})

Input

Name Type Required
where BookmarkWhereUniqueInput Yes
create BookmarkCreateInput | BookmarkUncheckedCreateInput Yes
update BookmarkUpdateInput | BookmarkUncheckedUpdateInput Yes

Output

Type: Bookmark
Required: Yes
List: No

Hashtag

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
text String
  • -
Yes -
hashtag String
  • @unique
Yes -
score Int
  • @default(1)
Yes -
created_at DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Hashtag

// Get one Hashtag
const hashtag = await prisma.hashtag.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where HashtagWhereUniqueInput Yes

Output

Type: Hashtag
Required: No
List: No

findFirst

Find first Hashtag

// Get one Hashtag
const hashtag = await prisma.hashtag.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where HashtagWhereInput No
orderBy HashtagOrderByWithRelationInput[] | HashtagOrderByWithRelationInput No
cursor HashtagWhereUniqueInput No
take Int No
skip Int No
distinct HashtagScalarFieldEnum | HashtagScalarFieldEnum[] No

Output

Type: Hashtag
Required: No
List: No

findMany

Find zero or more Hashtag

// Get all Hashtag
const Hashtag = await prisma.hashtag.findMany()
// Get first 10 Hashtag
const Hashtag = await prisma.hashtag.findMany({ take: 10 })

Input

Name Type Required
where HashtagWhereInput No
orderBy HashtagOrderByWithRelationInput[] | HashtagOrderByWithRelationInput No
cursor HashtagWhereUniqueInput No
take Int No
skip Int No
distinct HashtagScalarFieldEnum | HashtagScalarFieldEnum[] No

Output

Type: Hashtag
Required: Yes
List: Yes

create

Create one Hashtag

// Create one Hashtag
const Hashtag = await prisma.hashtag.create({
  data: {
    // ... data to create a Hashtag
  }
})

Input

Name Type Required
data HashtagCreateInput | HashtagUncheckedCreateInput Yes

Output

Type: Hashtag
Required: Yes
List: No

delete

Delete one Hashtag

// Delete one Hashtag
const Hashtag = await prisma.hashtag.delete({
  where: {
    // ... filter to delete one Hashtag
  }
})

Input

Name Type Required
where HashtagWhereUniqueInput Yes

Output

Type: Hashtag
Required: No
List: No

update

Update one Hashtag

// Update one Hashtag
const hashtag = await prisma.hashtag.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data HashtagUpdateInput | HashtagUncheckedUpdateInput Yes
where HashtagWhereUniqueInput Yes

Output

Type: Hashtag
Required: No
List: No

deleteMany

Delete zero or more Hashtag

// Delete a few Hashtag
const { count } = await prisma.hashtag.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where HashtagWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Hashtag

const { count } = await prisma.hashtag.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data HashtagUpdateManyMutationInput | HashtagUncheckedUpdateManyInput Yes
where HashtagWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Hashtag

// Update or create a Hashtag
const hashtag = await prisma.hashtag.upsert({
  create: {
    // ... data to create a Hashtag
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Hashtag we want to update
  }
})

Input

Name Type Required
where HashtagWhereUniqueInput Yes
create HashtagCreateInput | HashtagUncheckedCreateInput Yes
update HashtagUpdateInput | HashtagUncheckedUpdateInput Yes

Output

Type: Hashtag
Required: Yes
List: No

Message

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
text String?
  • -
No -
image String?
  • -
No -
created_at DateTime
  • @default(now())
Yes -
sender User
  • -
Yes -
sender_id String
  • -
Yes -
receiver User
  • -
Yes -
receiver_id String
  • -
Yes -
conversation Conversation
  • -
Yes -
conversation_id String
  • -
Yes -
media Media[]
  • -
Yes -

Operations

findUnique

Find zero or one Message

// Get one Message
const message = await prisma.message.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MessageWhereUniqueInput Yes

Output

Type: Message
Required: No
List: No

findFirst

Find first Message

// Get one Message
const message = await prisma.message.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MessageWhereInput No
orderBy MessageOrderByWithRelationInput[] | MessageOrderByWithRelationInput No
cursor MessageWhereUniqueInput No
take Int No
skip Int No
distinct MessageScalarFieldEnum | MessageScalarFieldEnum[] No

Output

Type: Message
Required: No
List: No

findMany

Find zero or more Message

// Get all Message
const Message = await prisma.message.findMany()
// Get first 10 Message
const Message = await prisma.message.findMany({ take: 10 })

Input

Name Type Required
where MessageWhereInput No
orderBy MessageOrderByWithRelationInput[] | MessageOrderByWithRelationInput No
cursor MessageWhereUniqueInput No
take Int No
skip Int No
distinct MessageScalarFieldEnum | MessageScalarFieldEnum[] No

Output

Type: Message
Required: Yes
List: Yes

create

Create one Message

// Create one Message
const Message = await prisma.message.create({
  data: {
    // ... data to create a Message
  }
})

Input

Name Type Required
data MessageCreateInput | MessageUncheckedCreateInput Yes

Output

Type: Message
Required: Yes
List: No

delete

Delete one Message

// Delete one Message
const Message = await prisma.message.delete({
  where: {
    // ... filter to delete one Message
  }
})

Input

Name Type Required
where MessageWhereUniqueInput Yes

Output

Type: Message
Required: No
List: No

update

Update one Message

// Update one Message
const message = await prisma.message.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MessageUpdateInput | MessageUncheckedUpdateInput Yes
where MessageWhereUniqueInput Yes

Output

Type: Message
Required: No
List: No

deleteMany

Delete zero or more Message

// Delete a few Message
const { count } = await prisma.message.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MessageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Message

const { count } = await prisma.message.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MessageUpdateManyMutationInput | MessageUncheckedUpdateManyInput Yes
where MessageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Message

// Update or create a Message
const message = await prisma.message.upsert({
  create: {
    // ... data to create a Message
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Message we want to update
  }
})

Input

Name Type Required
where MessageWhereUniqueInput Yes
create MessageCreateInput | MessageUncheckedCreateInput Yes
update MessageUpdateInput | MessageUncheckedUpdateInput Yes

Output

Type: Message
Required: Yes
List: No

Conversation

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
users User[]
  • -
Yes -
messages Message[]
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Conversation

// Get one Conversation
const conversation = await prisma.conversation.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConversationWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Conversation

// Get one Conversation
const conversation = await prisma.conversation.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConversationWhereInput No
orderBy ConversationOrderByWithRelationInput[] | ConversationOrderByWithRelationInput No
cursor ConversationWhereUniqueInput No
take Int No
skip Int No
distinct ConversationScalarFieldEnum | ConversationScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Conversation

// Get all Conversation
const Conversation = await prisma.conversation.findMany()
// Get first 10 Conversation
const Conversation = await prisma.conversation.findMany({ take: 10 })

Input

Name Type Required
where ConversationWhereInput No
orderBy ConversationOrderByWithRelationInput[] | ConversationOrderByWithRelationInput No
cursor ConversationWhereUniqueInput No
take Int No
skip Int No
distinct ConversationScalarFieldEnum | ConversationScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Conversation

// Create one Conversation
const Conversation = await prisma.conversation.create({
  data: {
    // ... data to create a Conversation
  }
})

Input

Name Type Required
data ConversationCreateInput | ConversationUncheckedCreateInput No

Output

Required: Yes
List: No

delete

Delete one Conversation

// Delete one Conversation
const Conversation = await prisma.conversation.delete({
  where: {
    // ... filter to delete one Conversation
  }
})

Input

Name Type Required
where ConversationWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Conversation

// Update one Conversation
const conversation = await prisma.conversation.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConversationUpdateInput | ConversationUncheckedUpdateInput Yes
where ConversationWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Conversation

// Delete a few Conversation
const { count } = await prisma.conversation.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ConversationWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Conversation

const { count } = await prisma.conversation.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ConversationUpdateManyMutationInput | ConversationUncheckedUpdateManyInput Yes
where ConversationWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Conversation

// Update or create a Conversation
const conversation = await prisma.conversation.upsert({
  create: {
    // ... data to create a Conversation
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Conversation we want to update
  }
})

Input

Name Type Required
where ConversationWhereUniqueInput Yes
create ConversationCreateInput | ConversationUncheckedCreateInput Yes
update ConversationUpdateInput | ConversationUncheckedUpdateInput Yes

Output

Required: Yes
List: No

CryptoLoginNonce

Fields

Name Type Attributes Required Comment
userId String
  • @unique
Yes -
nonce String
  • -
Yes -
expires DateTime
  • -
Yes -
user User
  • -
Yes -

Operations

findUnique

Find zero or one CryptoLoginNonce

// Get one CryptoLoginNonce
const cryptoLoginNonce = await prisma.cryptoLoginNonce.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CryptoLoginNonceWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first CryptoLoginNonce

// Get one CryptoLoginNonce
const cryptoLoginNonce = await prisma.cryptoLoginNonce.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CryptoLoginNonceWhereInput No
orderBy CryptoLoginNonceOrderByWithRelationInput[] | CryptoLoginNonceOrderByWithRelationInput No
cursor CryptoLoginNonceWhereUniqueInput No
take Int No
skip Int No
distinct CryptoLoginNonceScalarFieldEnum | CryptoLoginNonceScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more CryptoLoginNonce

// Get all CryptoLoginNonce
const CryptoLoginNonce = await prisma.cryptoLoginNonce.findMany()
// Get first 10 CryptoLoginNonce
const CryptoLoginNonce = await prisma.cryptoLoginNonce.findMany({ take: 10 })

Input

Name Type Required
where CryptoLoginNonceWhereInput No
orderBy CryptoLoginNonceOrderByWithRelationInput[] | CryptoLoginNonceOrderByWithRelationInput No
cursor CryptoLoginNonceWhereUniqueInput No
take Int No
skip Int No
distinct CryptoLoginNonceScalarFieldEnum | CryptoLoginNonceScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one CryptoLoginNonce

// Create one CryptoLoginNonce
const CryptoLoginNonce = await prisma.cryptoLoginNonce.create({
  data: {
    // ... data to create a CryptoLoginNonce
  }
})

Input

Name Type Required
data CryptoLoginNonceCreateInput | CryptoLoginNonceUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one CryptoLoginNonce

// Delete one CryptoLoginNonce
const CryptoLoginNonce = await prisma.cryptoLoginNonce.delete({
  where: {
    // ... filter to delete one CryptoLoginNonce
  }
})

Input

Name Type Required
where CryptoLoginNonceWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one CryptoLoginNonce

// Update one CryptoLoginNonce
const cryptoLoginNonce = await prisma.cryptoLoginNonce.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CryptoLoginNonceUpdateInput | CryptoLoginNonceUncheckedUpdateInput Yes
where CryptoLoginNonceWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more CryptoLoginNonce

// Delete a few CryptoLoginNonce
const { count } = await prisma.cryptoLoginNonce.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CryptoLoginNonceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one CryptoLoginNonce

const { count } = await prisma.cryptoLoginNonce.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CryptoLoginNonceUpdateManyMutationInput | CryptoLoginNonceUncheckedUpdateManyInput Yes
where CryptoLoginNonceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one CryptoLoginNonce

// Update or create a CryptoLoginNonce
const cryptoLoginNonce = await prisma.cryptoLoginNonce.upsert({
  create: {
    // ... data to create a CryptoLoginNonce
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the CryptoLoginNonce we want to update
  }
})

Input

Name Type Required
where CryptoLoginNonceWhereUniqueInput Yes
create CryptoLoginNonceCreateInput | CryptoLoginNonceUncheckedCreateInput Yes
update CryptoLoginNonceUpdateInput | CryptoLoginNonceUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Types

Input Types

VerificationTokenWhereInput

Name Type Nullable
AND VerificationTokenWhereInput | VerificationTokenWhereInput[] No
OR VerificationTokenWhereInput[] No
NOT VerificationTokenWhereInput | VerificationTokenWhereInput[] No
identifier StringFilter | String No
token StringFilter | String No
expires DateTimeFilter | DateTime No

VerificationTokenOrderByWithRelationInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

VerificationTokenWhereUniqueInput

Name Type Nullable
token String No
identifier_token VerificationTokenIdentifierTokenCompoundUniqueInput No
AND VerificationTokenWhereInput | VerificationTokenWhereInput[] No
OR VerificationTokenWhereInput[] No
NOT VerificationTokenWhereInput | VerificationTokenWhereInput[] No
identifier StringFilter | String No
expires DateTimeFilter | DateTime No

VerificationTokenOrderByWithAggregationInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No
_count VerificationTokenCountOrderByAggregateInput No
_max VerificationTokenMaxOrderByAggregateInput No
_min VerificationTokenMinOrderByAggregateInput No


AccountWhereInput

Name Type Nullable
AND AccountWhereInput | AccountWhereInput[] No
OR AccountWhereInput[] No
NOT AccountWhereInput | AccountWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
type StringFilter | String No
provider StringFilter | String No
providerAccountId StringFilter | String No
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
oath_token StringNullableFilter | String | Null Yes
oauth_token_secret StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
token_type StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
id_token StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes
user UserRelationFilter | UserWhereInput No

AccountOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder | SortOrderInput No
access_token SortOrder | SortOrderInput No
oath_token SortOrder | SortOrderInput No
oauth_token_secret SortOrder | SortOrderInput No
expires_at SortOrder | SortOrderInput No
token_type SortOrder | SortOrderInput No
scope SortOrder | SortOrderInput No
id_token SortOrder | SortOrderInput No
session_state SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No

AccountWhereUniqueInput

Name Type Nullable
id String No
provider_providerAccountId AccountProviderProviderAccountIdCompoundUniqueInput No
AND AccountWhereInput | AccountWhereInput[] No
OR AccountWhereInput[] No
NOT AccountWhereInput | AccountWhereInput[] No
userId StringFilter | String No
type StringFilter | String No
provider StringFilter | String No
providerAccountId StringFilter | String No
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
oath_token StringNullableFilter | String | Null Yes
oauth_token_secret StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
token_type StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
id_token StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes
user UserRelationFilter | UserWhereInput No

AccountOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder | SortOrderInput No
access_token SortOrder | SortOrderInput No
oath_token SortOrder | SortOrderInput No
oauth_token_secret SortOrder | SortOrderInput No
expires_at SortOrder | SortOrderInput No
token_type SortOrder | SortOrderInput No
scope SortOrder | SortOrderInput No
id_token SortOrder | SortOrderInput No
session_state SortOrder | SortOrderInput No
_count AccountCountOrderByAggregateInput No
_avg AccountAvgOrderByAggregateInput No
_max AccountMaxOrderByAggregateInput No
_min AccountMinOrderByAggregateInput No
_sum AccountSumOrderByAggregateInput No

AccountScalarWhereWithAggregatesInput

Name Type Nullable
AND AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] No
OR AccountScalarWhereWithAggregatesInput[] No
NOT AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
userId StringWithAggregatesFilter | String No
type StringWithAggregatesFilter | String No
provider StringWithAggregatesFilter | String No
providerAccountId StringWithAggregatesFilter | String No
refresh_token StringNullableWithAggregatesFilter | String | Null Yes
access_token StringNullableWithAggregatesFilter | String | Null Yes
oath_token StringNullableWithAggregatesFilter | String | Null Yes
oauth_token_secret StringNullableWithAggregatesFilter | String | Null Yes
expires_at IntNullableWithAggregatesFilter | Int | Null Yes
token_type StringNullableWithAggregatesFilter | String | Null Yes
scope StringNullableWithAggregatesFilter | String | Null Yes
id_token StringNullableWithAggregatesFilter | String | Null Yes
session_state StringNullableWithAggregatesFilter | String | Null Yes

SessionWhereInput

Name Type Nullable
AND SessionWhereInput | SessionWhereInput[] No
OR SessionWhereInput[] No
NOT SessionWhereInput | SessionWhereInput[] No
id StringFilter | String No
sessionToken StringFilter | String No
expires DateTimeFilter | DateTime No
userId StringFilter | String No
user UserRelationFilter | UserWhereInput No

SessionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
expires SortOrder No
userId SortOrder No
user UserOrderByWithRelationInput No

SessionWhereUniqueInput

Name Type Nullable
id String No
sessionToken String No
AND SessionWhereInput | SessionWhereInput[] No
OR SessionWhereInput[] No
NOT SessionWhereInput | SessionWhereInput[] No
expires DateTimeFilter | DateTime No
userId StringFilter | String No
user UserRelationFilter | UserWhereInput No

SessionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
expires SortOrder No
userId SortOrder No
_count SessionCountOrderByAggregateInput No
_max SessionMaxOrderByAggregateInput No
_min SessionMinOrderByAggregateInput No


UserWhereInput

Name Type Nullable
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
id StringFilter | String No
name StringFilter | String No
screen_name StringFilter | String No
location StringNullableFilter | String | Null Yes
url StringNullableFilter | String | Null Yes
description StringNullableFilter | String | Null Yes
detail StringNullableFilter | String | Null Yes
protected BoolFilter | Boolean No
verified BoolFilter | Boolean No
email StringNullableFilter | String | Null Yes
emailVerified DateTimeNullableFilter | DateTime | Null Yes
google_id StringNullableFilter | String | Null Yes
google_username StringNullableFilter | String | Null Yes
google_email StringNullableFilter | String | Null Yes
discord_id StringNullableFilter | String | Null Yes
discord_username StringNullableFilter | String | Null Yes
discord_email StringNullableFilter | String | Null Yes
twitter_id StringNullableFilter | String | Null Yes
twitter_username StringNullableFilter | String | Null Yes
twitter_email StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
password StringNullableFilter | String | Null Yes
role EnumUserRoleFilter | UserRole No
created_at DateTimeFilter | DateTime No
followers_count IntFilter | Int No
friends_count IntFilter | Int No
favorites_count IntFilter | Int No
statuses_count IntFilter | Int No
reputation_count FloatFilter | Float No
normalized_reputation IntFilter | Int No
profile_banner_url StringNullableFilter | String | Null Yes
profile_image_url StringNullableFilter | String | Null Yes
evm_address StringNullableFilter | String | Null Yes
bech32_address StringNullableFilter | String | Null Yes
pinned_tweet_id StringNullableFilter | String | Null Yes
cryptoLoginNonce CryptoLoginNonceNullableRelationFilter | CryptoLoginNonceWhereInput | Null Yes
accounts AccountListRelationFilter No
sessions SessionListRelationFilter No
tweets TweetListRelationFilter No
likes LikeListRelationFilter No
reputations ReputationListRelationFilter No
votes VoteListRelationFilter No
followers FollowerListRelationFilter No
following FollowerListRelationFilter No
transactions TransactionListRelationFilter No
retweets RetweetListRelationFilter No
bookmarks BookmarkListRelationFilter No
sent_messages MessageListRelationFilter No
received_messages MessageListRelationFilter No
conversations ConversationListRelationFilter No
pinned_tweet TweetNullableRelationFilter | TweetWhereInput | Null Yes

UserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
screen_name SortOrder No
location SortOrder | SortOrderInput No
url SortOrder | SortOrderInput No
description SortOrder | SortOrderInput No
detail SortOrder | SortOrderInput No
protected SortOrder No
verified SortOrder No
email SortOrder | SortOrderInput No
emailVerified SortOrder | SortOrderInput No
google_id SortOrder | SortOrderInput No
google_username SortOrder | SortOrderInput No
google_email SortOrder | SortOrderInput No
discord_id SortOrder | SortOrderInput No
discord_username SortOrder | SortOrderInput No
discord_email SortOrder | SortOrderInput No
twitter_id SortOrder | SortOrderInput No
twitter_username SortOrder | SortOrderInput No
twitter_email SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
password SortOrder | SortOrderInput No
role SortOrder No
created_at SortOrder No
followers_count SortOrder No
friends_count SortOrder No
favorites_count SortOrder No
statuses_count SortOrder No
reputation_count SortOrder No
normalized_reputation SortOrder No
profile_banner_url SortOrder | SortOrderInput No
profile_image_url SortOrder | SortOrderInput No
evm_address SortOrder | SortOrderInput No
bech32_address SortOrder | SortOrderInput No
pinned_tweet_id SortOrder | SortOrderInput No
cryptoLoginNonce CryptoLoginNonceOrderByWithRelationInput No
accounts AccountOrderByRelationAggregateInput No
sessions SessionOrderByRelationAggregateInput No
tweets TweetOrderByRelationAggregateInput No
likes LikeOrderByRelationAggregateInput No
reputations ReputationOrderByRelationAggregateInput No
votes VoteOrderByRelationAggregateInput No
followers FollowerOrderByRelationAggregateInput No
following FollowerOrderByRelationAggregateInput No
transactions TransactionOrderByRelationAggregateInput No
retweets RetweetOrderByRelationAggregateInput No
bookmarks BookmarkOrderByRelationAggregateInput No
sent_messages MessageOrderByRelationAggregateInput No
received_messages MessageOrderByRelationAggregateInput No
conversations ConversationOrderByRelationAggregateInput No
pinned_tweet TweetOrderByWithRelationInput No

UserWhereUniqueInput

Name Type Nullable
id String No
screen_name String No
email String No
google_id String No
google_username String No
google_email String No
discord_id String No
discord_username String No
discord_email String No
twitter_id String No
twitter_username String No
twitter_email String No
evm_address String No
bech32_address String No
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
name StringFilter | String No
location StringNullableFilter | String | Null Yes
url StringNullableFilter | String | Null Yes
description StringNullableFilter | String | Null Yes
detail StringNullableFilter | String | Null Yes
protected BoolFilter | Boolean No
verified BoolFilter | Boolean No
emailVerified DateTimeNullableFilter | DateTime | Null Yes
image StringNullableFilter | String | Null Yes
password StringNullableFilter | String | Null Yes
role EnumUserRoleFilter | UserRole No
created_at DateTimeFilter | DateTime No
followers_count IntFilter | Int No
friends_count IntFilter | Int No
favorites_count IntFilter | Int No
statuses_count IntFilter | Int No
reputation_count FloatFilter | Float No
normalized_reputation IntFilter | Int No
profile_banner_url StringNullableFilter | String | Null Yes
profile_image_url StringNullableFilter | String | Null Yes
pinned_tweet_id StringNullableFilter | String | Null Yes
cryptoLoginNonce CryptoLoginNonceNullableRelationFilter | CryptoLoginNonceWhereInput | Null Yes
accounts AccountListRelationFilter No
sessions SessionListRelationFilter No
tweets TweetListRelationFilter No
likes LikeListRelationFilter No
reputations ReputationListRelationFilter No
votes VoteListRelationFilter No
followers FollowerListRelationFilter No
following FollowerListRelationFilter No
transactions TransactionListRelationFilter No
retweets RetweetListRelationFilter No
bookmarks BookmarkListRelationFilter No
sent_messages MessageListRelationFilter No
received_messages MessageListRelationFilter No
conversations ConversationListRelationFilter No
pinned_tweet TweetNullableRelationFilter | TweetWhereInput | Null Yes

UserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
screen_name SortOrder No
location SortOrder | SortOrderInput No
url SortOrder | SortOrderInput No
description SortOrder | SortOrderInput No
detail SortOrder | SortOrderInput No
protected SortOrder No
verified SortOrder No
email SortOrder | SortOrderInput No
emailVerified SortOrder | SortOrderInput No
google_id SortOrder | SortOrderInput No
google_username SortOrder | SortOrderInput No
google_email SortOrder | SortOrderInput No
discord_id SortOrder | SortOrderInput No
discord_username SortOrder | SortOrderInput No
discord_email SortOrder | SortOrderInput No
twitter_id SortOrder | SortOrderInput No
twitter_username SortOrder | SortOrderInput No
twitter_email SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
password SortOrder | SortOrderInput No
role SortOrder No
created_at SortOrder No
followers_count SortOrder No
friends_count SortOrder No
favorites_count SortOrder No
statuses_count SortOrder No
reputation_count SortOrder No
normalized_reputation SortOrder No
profile_banner_url SortOrder | SortOrderInput No
profile_image_url SortOrder | SortOrderInput No
evm_address SortOrder | SortOrderInput No
bech32_address SortOrder | SortOrderInput No
pinned_tweet_id SortOrder | SortOrderInput No
_count UserCountOrderByAggregateInput No
_avg UserAvgOrderByAggregateInput No
_max UserMaxOrderByAggregateInput No
_min UserMinOrderByAggregateInput No
_sum UserSumOrderByAggregateInput No

UserScalarWhereWithAggregatesInput

Name Type Nullable
AND UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
OR UserScalarWhereWithAggregatesInput[] No
NOT UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
screen_name StringWithAggregatesFilter | String No
location StringNullableWithAggregatesFilter | String | Null Yes
url StringNullableWithAggregatesFilter | String | Null Yes
description StringNullableWithAggregatesFilter | String | Null Yes
detail StringNullableWithAggregatesFilter | String | Null Yes
protected BoolWithAggregatesFilter | Boolean No
verified BoolWithAggregatesFilter | Boolean No
email StringNullableWithAggregatesFilter | String | Null Yes
emailVerified DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
google_id StringNullableWithAggregatesFilter | String | Null Yes
google_username StringNullableWithAggregatesFilter | String | Null Yes
google_email StringNullableWithAggregatesFilter | String | Null Yes
discord_id StringNullableWithAggregatesFilter | String | Null Yes
discord_username StringNullableWithAggregatesFilter | String | Null Yes
discord_email StringNullableWithAggregatesFilter | String | Null Yes
twitter_id StringNullableWithAggregatesFilter | String | Null Yes
twitter_username StringNullableWithAggregatesFilter | String | Null Yes
twitter_email StringNullableWithAggregatesFilter | String | Null Yes
image StringNullableWithAggregatesFilter | String | Null Yes
password StringNullableWithAggregatesFilter | String | Null Yes
role EnumUserRoleWithAggregatesFilter | UserRole No
created_at DateTimeWithAggregatesFilter | DateTime No
followers_count IntWithAggregatesFilter | Int No
friends_count IntWithAggregatesFilter | Int No
favorites_count IntWithAggregatesFilter | Int No
statuses_count IntWithAggregatesFilter | Int No
reputation_count FloatWithAggregatesFilter | Float No
normalized_reputation IntWithAggregatesFilter | Int No
profile_banner_url StringNullableWithAggregatesFilter | String | Null Yes
profile_image_url StringNullableWithAggregatesFilter | String | Null Yes
evm_address StringNullableWithAggregatesFilter | String | Null Yes
bech32_address StringNullableWithAggregatesFilter | String | Null Yes
pinned_tweet_id StringNullableWithAggregatesFilter | String | Null Yes

FollowerWhereInput

Name Type Nullable
AND FollowerWhereInput | FollowerWhereInput[] No
OR FollowerWhereInput[] No
NOT FollowerWhereInput | FollowerWhereInput[] No
id StringFilter | String No
follower_id StringFilter | String No
followed_id StringFilter | String No
created_at DateTimeFilter | DateTime No
follower UserRelationFilter | UserWhereInput No
followed UserRelationFilter | UserWhereInput No

FollowerOrderByWithRelationInput

Name Type Nullable
id SortOrder No
follower_id SortOrder No
followed_id SortOrder No
created_at SortOrder No
follower UserOrderByWithRelationInput No
followed UserOrderByWithRelationInput No

FollowerWhereUniqueInput

Name Type Nullable
id String No
AND FollowerWhereInput | FollowerWhereInput[] No
OR FollowerWhereInput[] No
NOT FollowerWhereInput | FollowerWhereInput[] No
follower_id StringFilter | String No
followed_id StringFilter | String No
created_at DateTimeFilter | DateTime No
follower UserRelationFilter | UserWhereInput No
followed UserRelationFilter | UserWhereInput No

FollowerOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
follower_id SortOrder No
followed_id SortOrder No
created_at SortOrder No
_count FollowerCountOrderByAggregateInput No
_max FollowerMaxOrderByAggregateInput No
_min FollowerMinOrderByAggregateInput No


TransactionWhereInput

Name Type Nullable
AND TransactionWhereInput | TransactionWhereInput[] No
OR TransactionWhereInput[] No
NOT TransactionWhereInput | TransactionWhereInput[] No
id StringFilter | String No
user_id StringFilter | String No
follower_id StringFilter | String No
balance FloatFilter | Float No
amount FloatFilter | Float No
description StringFilter | String No
created_at DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput No

TransactionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
follower_id SortOrder No
balance SortOrder No
amount SortOrder No
description SortOrder No
created_at SortOrder No
user UserOrderByWithRelationInput No

TransactionWhereUniqueInput

Name Type Nullable
id String No
AND TransactionWhereInput | TransactionWhereInput[] No
OR TransactionWhereInput[] No
NOT TransactionWhereInput | TransactionWhereInput[] No
user_id StringFilter | String No
follower_id StringFilter | String No
balance FloatFilter | Float No
amount FloatFilter | Float No
description StringFilter | String No
created_at DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput No

TransactionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
follower_id SortOrder No
balance SortOrder No
amount SortOrder No
description SortOrder No
created_at SortOrder No
_count TransactionCountOrderByAggregateInput No
_avg TransactionAvgOrderByAggregateInput No
_max TransactionMaxOrderByAggregateInput No
_min TransactionMinOrderByAggregateInput No
_sum TransactionSumOrderByAggregateInput No


TweetWhereInput

Name Type Nullable
AND TweetWhereInput | TweetWhereInput[] No
OR TweetWhereInput[] No
NOT TweetWhereInput | TweetWhereInput[] No
id StringFilter | String No
text StringNullableFilter | String | Null Yes
source StringFilter | String No
in_reply_to_user_id StringNullableFilter | String | Null Yes
in_reply_to_screen_name StringNullableFilter | String | Null Yes
is_quote_status BoolFilter | Boolean No
quoted_status_id StringNullableFilter | String | Null Yes
quote_count IntFilter | Int No
reply_count IntFilter | Int No
retweet_count IntFilter | Int No
favorite_count IntFilter | Int No
vote_count IntFilter | Int No
possibly_sensitive BoolFilter | Boolean No
lang StringFilter | String No
created_at DateTimeFilter | DateTime No
author_id StringFilter | String No
quoted_tweet_id StringNullableFilter | String | Null Yes
in_reply_to_status_id StringNullableFilter | String | Null Yes
author UserRelationFilter | UserWhereInput No
media MediaListRelationFilter No
likes LikeListRelationFilter No
votes VoteListRelationFilter No
retweets RetweetListRelationFilter No
quotes TweetListRelationFilter No
quoted_tweet TweetNullableRelationFilter | TweetWhereInput | Null Yes
comments TweetListRelationFilter No
tweet_comment TweetNullableRelationFilter | TweetWhereInput | Null Yes
bookmarks BookmarkListRelationFilter No
pinned_by_users UserListRelationFilter No

TweetOrderByWithRelationInput

Name Type Nullable
id SortOrder No
text SortOrder | SortOrderInput No
source SortOrder No
in_reply_to_user_id SortOrder | SortOrderInput No
in_reply_to_screen_name SortOrder | SortOrderInput No
is_quote_status SortOrder No
quoted_status_id SortOrder | SortOrderInput No
quote_count SortOrder No
reply_count SortOrder No
retweet_count SortOrder No
favorite_count SortOrder No
vote_count SortOrder No
possibly_sensitive SortOrder No
lang SortOrder No
created_at SortOrder No
author_id SortOrder No
quoted_tweet_id SortOrder | SortOrderInput No
in_reply_to_status_id SortOrder | SortOrderInput No
author UserOrderByWithRelationInput No
media MediaOrderByRelationAggregateInput No
likes LikeOrderByRelationAggregateInput No
votes VoteOrderByRelationAggregateInput No
retweets RetweetOrderByRelationAggregateInput No
quotes TweetOrderByRelationAggregateInput No
quoted_tweet TweetOrderByWithRelationInput No
comments TweetOrderByRelationAggregateInput No
tweet_comment TweetOrderByWithRelationInput No
bookmarks BookmarkOrderByRelationAggregateInput No
pinned_by_users UserOrderByRelationAggregateInput No

TweetWhereUniqueInput

Name Type Nullable
id String No
AND TweetWhereInput | TweetWhereInput[] No
OR TweetWhereInput[] No
NOT TweetWhereInput | TweetWhereInput[] No
text StringNullableFilter | String | Null Yes
source StringFilter | String No
in_reply_to_user_id StringNullableFilter | String | Null Yes
in_reply_to_screen_name StringNullableFilter | String | Null Yes
is_quote_status BoolFilter | Boolean No
quoted_status_id StringNullableFilter | String | Null Yes
quote_count IntFilter | Int No
reply_count IntFilter | Int No
retweet_count IntFilter | Int No
favorite_count IntFilter | Int No
vote_count IntFilter | Int No
possibly_sensitive BoolFilter | Boolean No
lang StringFilter | String No
created_at DateTimeFilter | DateTime No
author_id StringFilter | String No
quoted_tweet_id StringNullableFilter | String | Null Yes
in_reply_to_status_id StringNullableFilter | String | Null Yes
author UserRelationFilter | UserWhereInput No
media MediaListRelationFilter No
likes LikeListRelationFilter No
votes VoteListRelationFilter No
retweets RetweetListRelationFilter No
quotes TweetListRelationFilter No
quoted_tweet TweetNullableRelationFilter | TweetWhereInput | Null Yes
comments TweetListRelationFilter No
tweet_comment TweetNullableRelationFilter | TweetWhereInput | Null Yes
bookmarks BookmarkListRelationFilter No
pinned_by_users UserListRelationFilter No

TweetOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
text SortOrder | SortOrderInput No
source SortOrder No
in_reply_to_user_id SortOrder | SortOrderInput No
in_reply_to_screen_name SortOrder | SortOrderInput No
is_quote_status SortOrder No
quoted_status_id SortOrder | SortOrderInput No
quote_count SortOrder No
reply_count SortOrder No
retweet_count SortOrder No
favorite_count SortOrder No
vote_count SortOrder No
possibly_sensitive SortOrder No
lang SortOrder No
created_at SortOrder No
author_id SortOrder No
quoted_tweet_id SortOrder | SortOrderInput No
in_reply_to_status_id SortOrder | SortOrderInput No
_count TweetCountOrderByAggregateInput No
_avg TweetAvgOrderByAggregateInput No
_max TweetMaxOrderByAggregateInput No
_min TweetMinOrderByAggregateInput No
_sum TweetSumOrderByAggregateInput No

TweetScalarWhereWithAggregatesInput

Name Type Nullable
AND TweetScalarWhereWithAggregatesInput | TweetScalarWhereWithAggregatesInput[] No
OR TweetScalarWhereWithAggregatesInput[] No
NOT TweetScalarWhereWithAggregatesInput | TweetScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
text StringNullableWithAggregatesFilter | String | Null Yes
source StringWithAggregatesFilter | String No
in_reply_to_user_id StringNullableWithAggregatesFilter | String | Null Yes
in_reply_to_screen_name StringNullableWithAggregatesFilter | String | Null Yes
is_quote_status BoolWithAggregatesFilter | Boolean No
quoted_status_id StringNullableWithAggregatesFilter | String | Null Yes
quote_count IntWithAggregatesFilter | Int No
reply_count IntWithAggregatesFilter | Int No
retweet_count IntWithAggregatesFilter | Int No
favorite_count IntWithAggregatesFilter | Int No
vote_count IntWithAggregatesFilter | Int No
possibly_sensitive BoolWithAggregatesFilter | Boolean No
lang StringWithAggregatesFilter | String No
created_at DateTimeWithAggregatesFilter | DateTime No
author_id StringWithAggregatesFilter | String No
quoted_tweet_id StringNullableWithAggregatesFilter | String | Null Yes
in_reply_to_status_id StringNullableWithAggregatesFilter | String | Null Yes

MediaWhereInput

Name Type Nullable
AND MediaWhereInput | MediaWhereInput[] No
OR MediaWhereInput[] No
NOT MediaWhereInput | MediaWhereInput[] No
id StringFilter | String No
media_url StringFilter | String No
media_type StringFilter | String No
media_path StringFilter | String No
tweet_id StringNullableFilter | String | Null Yes
message_id StringNullableFilter | String | Null Yes
tweet TweetNullableRelationFilter | TweetWhereInput | Null Yes
Message MessageNullableRelationFilter | MessageWhereInput | Null Yes

MediaOrderByWithRelationInput

Name Type Nullable
id SortOrder No
media_url SortOrder No
media_type SortOrder No
media_path SortOrder No
tweet_id SortOrder | SortOrderInput No
message_id SortOrder | SortOrderInput No
tweet TweetOrderByWithRelationInput No
Message MessageOrderByWithRelationInput No

MediaWhereUniqueInput

Name Type Nullable
id String No
AND MediaWhereInput | MediaWhereInput[] No
OR MediaWhereInput[] No
NOT MediaWhereInput | MediaWhereInput[] No
media_url StringFilter | String No
media_type StringFilter | String No
media_path StringFilter | String No
tweet_id StringNullableFilter | String | Null Yes
message_id StringNullableFilter | String | Null Yes
tweet TweetNullableRelationFilter | TweetWhereInput | Null Yes
Message MessageNullableRelationFilter | MessageWhereInput | Null Yes

MediaOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
media_url SortOrder No
media_type SortOrder No
media_path SortOrder No
tweet_id SortOrder | SortOrderInput No
message_id SortOrder | SortOrderInput No
_count MediaCountOrderByAggregateInput No
_max MediaMaxOrderByAggregateInput No
_min MediaMinOrderByAggregateInput No


LikeWhereInput

Name Type Nullable
AND LikeWhereInput | LikeWhereInput[] No
OR LikeWhereInput[] No
NOT LikeWhereInput | LikeWhereInput[] No
id StringFilter | String No
tweet_id StringFilter | String No
user_id StringFilter | String No
created_at DateTimeFilter | DateTime No
tweet TweetRelationFilter | TweetWhereInput No
user UserRelationFilter | UserWhereInput No

LikeOrderByWithRelationInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No
tweet TweetOrderByWithRelationInput No
user UserOrderByWithRelationInput No

LikeWhereUniqueInput

Name Type Nullable
id String No
AND LikeWhereInput | LikeWhereInput[] No
OR LikeWhereInput[] No
NOT LikeWhereInput | LikeWhereInput[] No
tweet_id StringFilter | String No
user_id StringFilter | String No
created_at DateTimeFilter | DateTime No
tweet TweetRelationFilter | TweetWhereInput No
user UserRelationFilter | UserWhereInput No

LikeOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No
_count LikeCountOrderByAggregateInput No
_max LikeMaxOrderByAggregateInput No
_min LikeMinOrderByAggregateInput No


ReputationWhereInput

Name Type Nullable
AND ReputationWhereInput | ReputationWhereInput[] No
OR ReputationWhereInput[] No
NOT ReputationWhereInput | ReputationWhereInput[] No
id StringFilter | String No
user_id StringFilter | String No
session_owner_id StringFilter | String No
reputation_status StringFilter | String No
created_at DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput No

ReputationOrderByWithRelationInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
session_owner_id SortOrder No
reputation_status SortOrder No
created_at SortOrder No
user UserOrderByWithRelationInput No

ReputationWhereUniqueInput

Name Type Nullable
id String No
AND ReputationWhereInput | ReputationWhereInput[] No
OR ReputationWhereInput[] No
NOT ReputationWhereInput | ReputationWhereInput[] No
user_id StringFilter | String No
session_owner_id StringFilter | String No
reputation_status StringFilter | String No
created_at DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput No

ReputationOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
session_owner_id SortOrder No
reputation_status SortOrder No
created_at SortOrder No
_count ReputationCountOrderByAggregateInput No
_max ReputationMaxOrderByAggregateInput No
_min ReputationMinOrderByAggregateInput No


VoteWhereInput

Name Type Nullable
AND VoteWhereInput | VoteWhereInput[] No
OR VoteWhereInput[] No
NOT VoteWhereInput | VoteWhereInput[] No
id StringFilter | String No
tweet_id StringFilter | String No
user_id StringFilter | String No
vote_status StringFilter | String No
created_at DateTimeFilter | DateTime No
tweet TweetRelationFilter | TweetWhereInput No
user UserRelationFilter | UserWhereInput No

VoteOrderByWithRelationInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
vote_status SortOrder No
created_at SortOrder No
tweet TweetOrderByWithRelationInput No
user UserOrderByWithRelationInput No

VoteWhereUniqueInput

Name Type Nullable
id String No
AND VoteWhereInput | VoteWhereInput[] No
OR VoteWhereInput[] No
NOT VoteWhereInput | VoteWhereInput[] No
tweet_id StringFilter | String No
user_id StringFilter | String No
vote_status StringFilter | String No
created_at DateTimeFilter | DateTime No
tweet TweetRelationFilter | TweetWhereInput No
user UserRelationFilter | UserWhereInput No

VoteOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
vote_status SortOrder No
created_at SortOrder No
_count VoteCountOrderByAggregateInput No
_max VoteMaxOrderByAggregateInput No
_min VoteMinOrderByAggregateInput No


RetweetWhereInput

Name Type Nullable
AND RetweetWhereInput | RetweetWhereInput[] No
OR RetweetWhereInput[] No
NOT RetweetWhereInput | RetweetWhereInput[] No
id StringFilter | String No
tweet_id StringFilter | String No
user_id StringFilter | String No
created_at DateTimeFilter | DateTime No
tweet TweetRelationFilter | TweetWhereInput No
user UserRelationFilter | UserWhereInput No

RetweetOrderByWithRelationInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No
tweet TweetOrderByWithRelationInput No
user UserOrderByWithRelationInput No

RetweetWhereUniqueInput

Name Type Nullable
id String No
AND RetweetWhereInput | RetweetWhereInput[] No
OR RetweetWhereInput[] No
NOT RetweetWhereInput | RetweetWhereInput[] No
tweet_id StringFilter | String No
user_id StringFilter | String No
created_at DateTimeFilter | DateTime No
tweet TweetRelationFilter | TweetWhereInput No
user UserRelationFilter | UserWhereInput No

RetweetOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No
_count RetweetCountOrderByAggregateInput No
_max RetweetMaxOrderByAggregateInput No
_min RetweetMinOrderByAggregateInput No


BookmarkWhereInput

Name Type Nullable
AND BookmarkWhereInput | BookmarkWhereInput[] No
OR BookmarkWhereInput[] No
NOT BookmarkWhereInput | BookmarkWhereInput[] No
id StringFilter | String No
tweet_id StringFilter | String No
user_id StringFilter | String No
created_at DateTimeFilter | DateTime No
tweet TweetRelationFilter | TweetWhereInput No
user UserRelationFilter | UserWhereInput No

BookmarkOrderByWithRelationInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No
tweet TweetOrderByWithRelationInput No
user UserOrderByWithRelationInput No

BookmarkWhereUniqueInput

Name Type Nullable
id String No
AND BookmarkWhereInput | BookmarkWhereInput[] No
OR BookmarkWhereInput[] No
NOT BookmarkWhereInput | BookmarkWhereInput[] No
tweet_id StringFilter | String No
user_id StringFilter | String No
created_at DateTimeFilter | DateTime No
tweet TweetRelationFilter | TweetWhereInput No
user UserRelationFilter | UserWhereInput No

BookmarkOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No
_count BookmarkCountOrderByAggregateInput No
_max BookmarkMaxOrderByAggregateInput No
_min BookmarkMinOrderByAggregateInput No


HashtagWhereInput

Name Type Nullable
AND HashtagWhereInput | HashtagWhereInput[] No
OR HashtagWhereInput[] No
NOT HashtagWhereInput | HashtagWhereInput[] No
id StringFilter | String No
text StringFilter | String No
hashtag StringFilter | String No
score IntFilter | Int No
created_at DateTimeFilter | DateTime No

HashtagOrderByWithRelationInput

Name Type Nullable
id SortOrder No
text SortOrder No
hashtag SortOrder No
score SortOrder No
created_at SortOrder No

HashtagWhereUniqueInput

Name Type Nullable
id String No
hashtag String No
AND HashtagWhereInput | HashtagWhereInput[] No
OR HashtagWhereInput[] No
NOT HashtagWhereInput | HashtagWhereInput[] No
text StringFilter | String No
score IntFilter | Int No
created_at DateTimeFilter | DateTime No

HashtagOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
text SortOrder No
hashtag SortOrder No
score SortOrder No
created_at SortOrder No
_count HashtagCountOrderByAggregateInput No
_avg HashtagAvgOrderByAggregateInput No
_max HashtagMaxOrderByAggregateInput No
_min HashtagMinOrderByAggregateInput No
_sum HashtagSumOrderByAggregateInput No


MessageWhereInput

Name Type Nullable
AND MessageWhereInput | MessageWhereInput[] No
OR MessageWhereInput[] No
NOT MessageWhereInput | MessageWhereInput[] No
id StringFilter | String No
text StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
created_at DateTimeFilter | DateTime No
sender_id StringFilter | String No
receiver_id StringFilter | String No
conversation_id StringFilter | String No
sender UserRelationFilter | UserWhereInput No
receiver UserRelationFilter | UserWhereInput No
conversation ConversationRelationFilter | ConversationWhereInput No
media MediaListRelationFilter No

MessageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
text SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
created_at SortOrder No
sender_id SortOrder No
receiver_id SortOrder No
conversation_id SortOrder No
sender UserOrderByWithRelationInput No
receiver UserOrderByWithRelationInput No
conversation ConversationOrderByWithRelationInput No
media MediaOrderByRelationAggregateInput No

MessageWhereUniqueInput

Name Type Nullable
id String No
AND MessageWhereInput | MessageWhereInput[] No
OR MessageWhereInput[] No
NOT MessageWhereInput | MessageWhereInput[] No
text StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
created_at DateTimeFilter | DateTime No
sender_id StringFilter | String No
receiver_id StringFilter | String No
conversation_id StringFilter | String No
sender UserRelationFilter | UserWhereInput No
receiver UserRelationFilter | UserWhereInput No
conversation ConversationRelationFilter | ConversationWhereInput No
media MediaListRelationFilter No

MessageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
text SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
created_at SortOrder No
sender_id SortOrder No
receiver_id SortOrder No
conversation_id SortOrder No
_count MessageCountOrderByAggregateInput No
_max MessageMaxOrderByAggregateInput No
_min MessageMinOrderByAggregateInput No


ConversationWhereInput

Name Type Nullable
AND ConversationWhereInput | ConversationWhereInput[] No
OR ConversationWhereInput[] No
NOT ConversationWhereInput | ConversationWhereInput[] No
id StringFilter | String No
created_at DateTimeFilter | DateTime No
users UserListRelationFilter No
messages MessageListRelationFilter No

ConversationOrderByWithRelationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
users UserOrderByRelationAggregateInput No
messages MessageOrderByRelationAggregateInput No

ConversationWhereUniqueInput

Name Type Nullable
id String No
AND ConversationWhereInput | ConversationWhereInput[] No
OR ConversationWhereInput[] No
NOT ConversationWhereInput | ConversationWhereInput[] No
created_at DateTimeFilter | DateTime No
users UserListRelationFilter No
messages MessageListRelationFilter No

ConversationOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
created_at SortOrder No
_count ConversationCountOrderByAggregateInput No
_max ConversationMaxOrderByAggregateInput No
_min ConversationMinOrderByAggregateInput No


CryptoLoginNonceWhereInput

Name Type Nullable
AND CryptoLoginNonceWhereInput | CryptoLoginNonceWhereInput[] No
OR CryptoLoginNonceWhereInput[] No
NOT CryptoLoginNonceWhereInput | CryptoLoginNonceWhereInput[] No
userId StringFilter | String No
nonce StringFilter | String No
expires DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput No

CryptoLoginNonceOrderByWithRelationInput

Name Type Nullable
userId SortOrder No
nonce SortOrder No
expires SortOrder No
user UserOrderByWithRelationInput No

CryptoLoginNonceWhereUniqueInput

Name Type Nullable
userId String No
AND CryptoLoginNonceWhereInput | CryptoLoginNonceWhereInput[] No
OR CryptoLoginNonceWhereInput[] No
NOT CryptoLoginNonceWhereInput | CryptoLoginNonceWhereInput[] No
nonce StringFilter | String No
expires DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput No

CryptoLoginNonceOrderByWithAggregationInput

Name Type Nullable
userId SortOrder No
nonce SortOrder No
expires SortOrder No
_count CryptoLoginNonceCountOrderByAggregateInput No
_max CryptoLoginNonceMaxOrderByAggregateInput No
_min CryptoLoginNonceMinOrderByAggregateInput No


VerificationTokenCreateInput

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenUncheckedCreateInput

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenUpdateInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenUncheckedUpdateInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenCreateManyInput

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenUpdateManyMutationInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenUncheckedUpdateManyInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

AccountCreateInput

Name Type Nullable
id String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
oath_token String | Null Yes
oauth_token_secret String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
user UserCreateNestedOneWithoutAccountsInput No

AccountUncheckedCreateInput

Name Type Nullable
id String No
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
oath_token String | Null Yes
oauth_token_secret String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes

AccountUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oath_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
user UserUpdateOneRequiredWithoutAccountsNestedInput No

AccountUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oath_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountCreateManyInput

Name Type Nullable
id String No
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
oath_token String | Null Yes
oauth_token_secret String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes

AccountUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oath_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oath_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

SessionCreateInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No
user UserCreateNestedOneWithoutSessionsInput No

SessionUncheckedCreateInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No
userId String No

SessionUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutSessionsNestedInput No

SessionUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

SessionCreateManyInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No
userId String No

SessionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

SessionUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No

UserCreateInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

UserCreateManyInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes

UserUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes

UserUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes

FollowerCreateInput

Name Type Nullable
id String No
created_at DateTime No
follower UserCreateNestedOneWithoutFollowersInput No
followed UserCreateNestedOneWithoutFollowingInput No

FollowerUncheckedCreateInput

Name Type Nullable
id String No
follower_id String No
followed_id String No
created_at DateTime No

FollowerUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
follower UserUpdateOneRequiredWithoutFollowersNestedInput No
followed UserUpdateOneRequiredWithoutFollowingNestedInput No

FollowerUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
follower_id String | StringFieldUpdateOperationsInput No
followed_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

FollowerCreateManyInput

Name Type Nullable
id String No
follower_id String No
followed_id String No
created_at DateTime No

FollowerUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

FollowerUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
follower_id String | StringFieldUpdateOperationsInput No
followed_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

TransactionCreateInput

Name Type Nullable
id String No
user_id String No
balance Float No
amount Float No
description String No
created_at DateTime No
user UserCreateNestedOneWithoutTransactionsInput No

TransactionUncheckedCreateInput

Name Type Nullable
id String No
user_id String No
follower_id String No
balance Float No
amount Float No
description String No
created_at DateTime No

TransactionUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
balance Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutTransactionsNestedInput No

TransactionUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
follower_id String | StringFieldUpdateOperationsInput No
balance Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

TransactionCreateManyInput

Name Type Nullable
id String No
user_id String No
follower_id String No
balance Float No
amount Float No
description String No
created_at DateTime No

TransactionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
balance Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

TransactionUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
follower_id String | StringFieldUpdateOperationsInput No
balance Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

TweetCreateInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author UserCreateNestedOneWithoutTweetsInput No
media MediaCreateNestedManyWithoutTweetInput No
likes LikeCreateNestedManyWithoutTweetInput No
votes VoteCreateNestedManyWithoutTweetInput No
retweets RetweetCreateNestedManyWithoutTweetInput No
quotes TweetCreateNestedManyWithoutQuoted_tweetInput No
quoted_tweet TweetCreateNestedOneWithoutQuotesInput No
comments TweetCreateNestedManyWithoutTweet_commentInput No
tweet_comment TweetCreateNestedOneWithoutCommentsInput No
bookmarks BookmarkCreateNestedManyWithoutTweetInput No
pinned_by_users UserCreateNestedManyWithoutPinned_tweetInput No

TweetUncheckedCreateInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String | Null Yes
in_reply_to_status_id String | Null Yes
media MediaUncheckedCreateNestedManyWithoutTweetInput No
likes LikeUncheckedCreateNestedManyWithoutTweetInput No
votes VoteUncheckedCreateNestedManyWithoutTweetInput No
retweets RetweetUncheckedCreateNestedManyWithoutTweetInput No
quotes TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput No
comments TweetUncheckedCreateNestedManyWithoutTweet_commentInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutTweetInput No
pinned_by_users UserUncheckedCreateNestedManyWithoutPinned_tweetInput No

TweetUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutTweetsNestedInput No
media MediaUpdateManyWithoutTweetNestedInput No
likes LikeUpdateManyWithoutTweetNestedInput No
votes VoteUpdateManyWithoutTweetNestedInput No
retweets RetweetUpdateManyWithoutTweetNestedInput No
quotes TweetUpdateManyWithoutQuoted_tweetNestedInput No
quoted_tweet TweetUpdateOneWithoutQuotesNestedInput No
comments TweetUpdateManyWithoutTweet_commentNestedInput No
tweet_comment TweetUpdateOneWithoutCommentsNestedInput No
bookmarks BookmarkUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
media MediaUncheckedUpdateManyWithoutTweetNestedInput No
likes LikeUncheckedUpdateManyWithoutTweetNestedInput No
votes VoteUncheckedUpdateManyWithoutTweetNestedInput No
retweets RetweetUncheckedUpdateManyWithoutTweetNestedInput No
quotes TweetUncheckedUpdateManyWithoutQuoted_tweetNestedInput No
comments TweetUncheckedUpdateManyWithoutTweet_commentNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUncheckedUpdateManyWithoutPinned_tweetNestedInput No

TweetCreateManyInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String | Null Yes
in_reply_to_status_id String | Null Yes

TweetUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

TweetUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes

MediaCreateInput

Name Type Nullable
id String No
media_url String No
media_type String No
media_path String No
tweet TweetCreateNestedOneWithoutMediaInput No
Message MessageCreateNestedOneWithoutMediaInput No

MediaUncheckedCreateInput

Name Type Nullable
id String No
media_url String No
media_type String No
media_path String No
tweet_id String | Null Yes
message_id String | Null Yes

MediaUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
media_url String | StringFieldUpdateOperationsInput No
media_type String | StringFieldUpdateOperationsInput No
media_path String | StringFieldUpdateOperationsInput No
tweet TweetUpdateOneWithoutMediaNestedInput No
Message MessageUpdateOneWithoutMediaNestedInput No

MediaUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
media_url String | StringFieldUpdateOperationsInput No
media_type String | StringFieldUpdateOperationsInput No
media_path String | StringFieldUpdateOperationsInput No
tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
message_id String | NullableStringFieldUpdateOperationsInput | Null Yes

MediaCreateManyInput

Name Type Nullable
id String No
media_url String No
media_type String No
media_path String No
tweet_id String | Null Yes
message_id String | Null Yes

MediaUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
media_url String | StringFieldUpdateOperationsInput No
media_type String | StringFieldUpdateOperationsInput No
media_path String | StringFieldUpdateOperationsInput No

MediaUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
media_url String | StringFieldUpdateOperationsInput No
media_type String | StringFieldUpdateOperationsInput No
media_path String | StringFieldUpdateOperationsInput No
tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
message_id String | NullableStringFieldUpdateOperationsInput | Null Yes

LikeCreateInput

Name Type Nullable
id String No
created_at DateTime No
tweet TweetCreateNestedOneWithoutLikesInput No
user UserCreateNestedOneWithoutLikesInput No

LikeUncheckedCreateInput

Name Type Nullable
id String No
tweet_id String No
user_id String No
created_at DateTime No


LikeUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

LikeCreateManyInput

Name Type Nullable
id String No
tweet_id String No
user_id String No
created_at DateTime No

LikeUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

LikeUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

ReputationCreateInput

Name Type Nullable
id String No
session_owner_id String No
reputation_status String No
created_at DateTime No
user UserCreateNestedOneWithoutReputationsInput No

ReputationUncheckedCreateInput

Name Type Nullable
id String No
user_id String No
session_owner_id String No
reputation_status String No
created_at DateTime No

ReputationUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
session_owner_id String | StringFieldUpdateOperationsInput No
reputation_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutReputationsNestedInput No

ReputationUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
session_owner_id String | StringFieldUpdateOperationsInput No
reputation_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

ReputationCreateManyInput

Name Type Nullable
id String No
user_id String No
session_owner_id String No
reputation_status String No
created_at DateTime No

ReputationUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
session_owner_id String | StringFieldUpdateOperationsInput No
reputation_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

ReputationUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
session_owner_id String | StringFieldUpdateOperationsInput No
reputation_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

VoteCreateInput

Name Type Nullable
id String No
vote_status String No
created_at DateTime No
tweet TweetCreateNestedOneWithoutVotesInput No
user UserCreateNestedOneWithoutVotesInput No

VoteUncheckedCreateInput

Name Type Nullable
id String No
tweet_id String No
user_id String No
vote_status String No
created_at DateTime No


VoteUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
vote_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

VoteCreateManyInput

Name Type Nullable
id String No
tweet_id String No
user_id String No
vote_status String No
created_at DateTime No

VoteUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
vote_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

VoteUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
vote_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

RetweetCreateInput

Name Type Nullable
id String No
created_at DateTime No
tweet TweetCreateNestedOneWithoutRetweetsInput No
user UserCreateNestedOneWithoutRetweetsInput No

RetweetUncheckedCreateInput

Name Type Nullable
id String No
tweet_id String No
user_id String No
created_at DateTime No


RetweetUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

RetweetCreateManyInput

Name Type Nullable
id String No
tweet_id String No
user_id String No
created_at DateTime No

RetweetUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

RetweetUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

BookmarkCreateInput

Name Type Nullable
id String No
created_at DateTime No
tweet TweetCreateNestedOneWithoutBookmarksInput No
user UserCreateNestedOneWithoutBookmarksInput No

BookmarkUncheckedCreateInput

Name Type Nullable
id String No
tweet_id String No
user_id String No
created_at DateTime No


BookmarkUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

BookmarkCreateManyInput

Name Type Nullable
id String No
tweet_id String No
user_id String No
created_at DateTime No

BookmarkUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

BookmarkUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

HashtagCreateInput

Name Type Nullable
id String No
text String No
hashtag String No
score Int No
created_at DateTime No

HashtagUncheckedCreateInput

Name Type Nullable
id String No
text String No
hashtag String No
score Int No
created_at DateTime No

HashtagUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
hashtag String | StringFieldUpdateOperationsInput No
score Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

HashtagUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
hashtag String | StringFieldUpdateOperationsInput No
score Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

HashtagCreateManyInput

Name Type Nullable
id String No
text String No
hashtag String No
score Int No
created_at DateTime No

HashtagUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
hashtag String | StringFieldUpdateOperationsInput No
score Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

HashtagUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | StringFieldUpdateOperationsInput No
hashtag String | StringFieldUpdateOperationsInput No
score Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

MessageCreateInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
sender UserCreateNestedOneWithoutReceived_messagesInput No
receiver UserCreateNestedOneWithoutSent_messagesInput No
conversation ConversationCreateNestedOneWithoutMessagesInput No
media MediaCreateNestedManyWithoutMessageInput No

MessageUncheckedCreateInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
sender_id String No
receiver_id String No
conversation_id String No
media MediaUncheckedCreateNestedManyWithoutMessageInput No


MessageUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
sender_id String | StringFieldUpdateOperationsInput No
receiver_id String | StringFieldUpdateOperationsInput No
conversation_id String | StringFieldUpdateOperationsInput No
media MediaUncheckedUpdateManyWithoutMessageNestedInput No

MessageCreateManyInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
sender_id String No
receiver_id String No
conversation_id String No

MessageUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No

MessageUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
sender_id String | StringFieldUpdateOperationsInput No
receiver_id String | StringFieldUpdateOperationsInput No
conversation_id String | StringFieldUpdateOperationsInput No

ConversationCreateInput

Name Type Nullable
id String No
created_at DateTime No
users UserCreateNestedManyWithoutConversationsInput No
messages MessageCreateNestedManyWithoutConversationInput No

ConversationUncheckedCreateInput

Name Type Nullable
id String No
created_at DateTime No
users UserUncheckedCreateNestedManyWithoutConversationsInput No
messages MessageUncheckedCreateNestedManyWithoutConversationInput No

ConversationUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
users UserUpdateManyWithoutConversationsNestedInput No
messages MessageUpdateManyWithoutConversationNestedInput No

ConversationUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
users UserUncheckedUpdateManyWithoutConversationsNestedInput No
messages MessageUncheckedUpdateManyWithoutConversationNestedInput No

ConversationCreateManyInput

Name Type Nullable
id String No
created_at DateTime No

ConversationUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

ConversationUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

CryptoLoginNonceCreateInput

Name Type Nullable
nonce String No
expires DateTime No
user UserCreateNestedOneWithoutCryptoLoginNonceInput No

CryptoLoginNonceUncheckedCreateInput

Name Type Nullable
userId String No
nonce String No
expires DateTime No

CryptoLoginNonceUpdateInput

Name Type Nullable
nonce String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutCryptoLoginNonceNestedInput No

CryptoLoginNonceUncheckedUpdateInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
nonce String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

CryptoLoginNonceCreateManyInput

Name Type Nullable
userId String No
nonce String No
expires DateTime No

CryptoLoginNonceUpdateManyMutationInput

Name Type Nullable
nonce String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

CryptoLoginNonceUncheckedUpdateManyInput

Name Type Nullable
userId String | StringFieldUpdateOperationsInput No
nonce String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

StringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringFilter No

DateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

VerificationTokenIdentifierTokenCompoundUniqueInput

Name Type Nullable
identifier String No
token String No

VerificationTokenCountOrderByAggregateInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

VerificationTokenMaxOrderByAggregateInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

VerificationTokenMinOrderByAggregateInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

StringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

StringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringNullableFilter | Null Yes

IntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes

UserRelationFilter

Name Type Nullable
is UserWhereInput No
isNot UserWhereInput No

SortOrderInput

Name Type Nullable
sort SortOrder No
nulls NullsOrder No

AccountProviderProviderAccountIdCompoundUniqueInput

Name Type Nullable
provider String No
providerAccountId String No

AccountCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
oath_token SortOrder No
oauth_token_secret SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No

AccountAvgOrderByAggregateInput

Name Type Nullable
expires_at SortOrder No

AccountMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
oath_token SortOrder No
oauth_token_secret SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No

AccountMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
oath_token SortOrder No
oauth_token_secret SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No

AccountSumOrderByAggregateInput

Name Type Nullable
expires_at SortOrder No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

SessionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
expires SortOrder No
userId SortOrder No

SessionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
expires SortOrder No
userId SortOrder No

SessionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
expires SortOrder No
userId SortOrder No

BoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No

DateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes


IntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

FloatFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatFilter No

CryptoLoginNonceNullableRelationFilter

Name Type Nullable
is CryptoLoginNonceWhereInput | Null Yes
isNot CryptoLoginNonceWhereInput | Null Yes

AccountListRelationFilter

Name Type Nullable
every AccountWhereInput No
some AccountWhereInput No
none AccountWhereInput No

SessionListRelationFilter

Name Type Nullable
every SessionWhereInput No
some SessionWhereInput No
none SessionWhereInput No

TweetListRelationFilter

Name Type Nullable
every TweetWhereInput No
some TweetWhereInput No
none TweetWhereInput No

LikeListRelationFilter

Name Type Nullable
every LikeWhereInput No
some LikeWhereInput No
none LikeWhereInput No

ReputationListRelationFilter

Name Type Nullable
every ReputationWhereInput No
some ReputationWhereInput No
none ReputationWhereInput No

VoteListRelationFilter

Name Type Nullable
every VoteWhereInput No
some VoteWhereInput No
none VoteWhereInput No

FollowerListRelationFilter

Name Type Nullable
every FollowerWhereInput No
some FollowerWhereInput No
none FollowerWhereInput No

TransactionListRelationFilter

Name Type Nullable
every TransactionWhereInput No
some TransactionWhereInput No
none TransactionWhereInput No

RetweetListRelationFilter

Name Type Nullable
every RetweetWhereInput No
some RetweetWhereInput No
none RetweetWhereInput No

BookmarkListRelationFilter

Name Type Nullable
every BookmarkWhereInput No
some BookmarkWhereInput No
none BookmarkWhereInput No

MessageListRelationFilter

Name Type Nullable
every MessageWhereInput No
some MessageWhereInput No
none MessageWhereInput No

ConversationListRelationFilter

Name Type Nullable
every ConversationWhereInput No
some ConversationWhereInput No
none ConversationWhereInput No

TweetNullableRelationFilter

Name Type Nullable
is TweetWhereInput | Null Yes
isNot TweetWhereInput | Null Yes

AccountOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

SessionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TweetOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

LikeOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ReputationOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

VoteOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FollowerOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TransactionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

RetweetOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BookmarkOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

MessageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ConversationOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
screen_name SortOrder No
location SortOrder No
url SortOrder No
description SortOrder No
detail SortOrder No
protected SortOrder No
verified SortOrder No
email SortOrder No
emailVerified SortOrder No
google_id SortOrder No
google_username SortOrder No
google_email SortOrder No
discord_id SortOrder No
discord_username SortOrder No
discord_email SortOrder No
twitter_id SortOrder No
twitter_username SortOrder No
twitter_email SortOrder No
image SortOrder No
password SortOrder No
role SortOrder No
created_at SortOrder No
followers_count SortOrder No
friends_count SortOrder No
favorites_count SortOrder No
statuses_count SortOrder No
reputation_count SortOrder No
normalized_reputation SortOrder No
profile_banner_url SortOrder No
profile_image_url SortOrder No
evm_address SortOrder No
bech32_address SortOrder No
pinned_tweet_id SortOrder No

UserAvgOrderByAggregateInput

Name Type Nullable
followers_count SortOrder No
friends_count SortOrder No
favorites_count SortOrder No
statuses_count SortOrder No
reputation_count SortOrder No
normalized_reputation SortOrder No

UserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
screen_name SortOrder No
location SortOrder No
url SortOrder No
description SortOrder No
detail SortOrder No
protected SortOrder No
verified SortOrder No
email SortOrder No
emailVerified SortOrder No
google_id SortOrder No
google_username SortOrder No
google_email SortOrder No
discord_id SortOrder No
discord_username SortOrder No
discord_email SortOrder No
twitter_id SortOrder No
twitter_username SortOrder No
twitter_email SortOrder No
image SortOrder No
password SortOrder No
role SortOrder No
created_at SortOrder No
followers_count SortOrder No
friends_count SortOrder No
favorites_count SortOrder No
statuses_count SortOrder No
reputation_count SortOrder No
normalized_reputation SortOrder No
profile_banner_url SortOrder No
profile_image_url SortOrder No
evm_address SortOrder No
bech32_address SortOrder No
pinned_tweet_id SortOrder No

UserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
screen_name SortOrder No
location SortOrder No
url SortOrder No
description SortOrder No
detail SortOrder No
protected SortOrder No
verified SortOrder No
email SortOrder No
emailVerified SortOrder No
google_id SortOrder No
google_username SortOrder No
google_email SortOrder No
discord_id SortOrder No
discord_username SortOrder No
discord_email SortOrder No
twitter_id SortOrder No
twitter_username SortOrder No
twitter_email SortOrder No
image SortOrder No
password SortOrder No
role SortOrder No
created_at SortOrder No
followers_count SortOrder No
friends_count SortOrder No
favorites_count SortOrder No
statuses_count SortOrder No
reputation_count SortOrder No
normalized_reputation SortOrder No
profile_banner_url SortOrder No
profile_image_url SortOrder No
evm_address SortOrder No
bech32_address SortOrder No
pinned_tweet_id SortOrder No

UserSumOrderByAggregateInput

Name Type Nullable
followers_count SortOrder No
friends_count SortOrder No
favorites_count SortOrder No
statuses_count SortOrder No
reputation_count SortOrder No
normalized_reputation SortOrder No

BoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No


IntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

FloatWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedFloatFilter No
_min NestedFloatFilter No
_max NestedFloatFilter No

FollowerCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
follower_id SortOrder No
followed_id SortOrder No
created_at SortOrder No

FollowerMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
follower_id SortOrder No
followed_id SortOrder No
created_at SortOrder No

FollowerMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
follower_id SortOrder No
followed_id SortOrder No
created_at SortOrder No

TransactionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
follower_id SortOrder No
balance SortOrder No
amount SortOrder No
description SortOrder No
created_at SortOrder No

TransactionAvgOrderByAggregateInput

Name Type Nullable
balance SortOrder No
amount SortOrder No

TransactionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
follower_id SortOrder No
balance SortOrder No
amount SortOrder No
description SortOrder No
created_at SortOrder No

TransactionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
follower_id SortOrder No
balance SortOrder No
amount SortOrder No
description SortOrder No
created_at SortOrder No

TransactionSumOrderByAggregateInput

Name Type Nullable
balance SortOrder No
amount SortOrder No

MediaListRelationFilter

Name Type Nullable
every MediaWhereInput No
some MediaWhereInput No
none MediaWhereInput No

UserListRelationFilter

Name Type Nullable
every UserWhereInput No
some UserWhereInput No
none UserWhereInput No

MediaOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TweetCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
text SortOrder No
source SortOrder No
in_reply_to_user_id SortOrder No
in_reply_to_screen_name SortOrder No
is_quote_status SortOrder No
quoted_status_id SortOrder No
quote_count SortOrder No
reply_count SortOrder No
retweet_count SortOrder No
favorite_count SortOrder No
vote_count SortOrder No
possibly_sensitive SortOrder No
lang SortOrder No
created_at SortOrder No
author_id SortOrder No
quoted_tweet_id SortOrder No
in_reply_to_status_id SortOrder No

TweetAvgOrderByAggregateInput

Name Type Nullable
quote_count SortOrder No
reply_count SortOrder No
retweet_count SortOrder No
favorite_count SortOrder No
vote_count SortOrder No

TweetMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
text SortOrder No
source SortOrder No
in_reply_to_user_id SortOrder No
in_reply_to_screen_name SortOrder No
is_quote_status SortOrder No
quoted_status_id SortOrder No
quote_count SortOrder No
reply_count SortOrder No
retweet_count SortOrder No
favorite_count SortOrder No
vote_count SortOrder No
possibly_sensitive SortOrder No
lang SortOrder No
created_at SortOrder No
author_id SortOrder No
quoted_tweet_id SortOrder No
in_reply_to_status_id SortOrder No

TweetMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
text SortOrder No
source SortOrder No
in_reply_to_user_id SortOrder No
in_reply_to_screen_name SortOrder No
is_quote_status SortOrder No
quoted_status_id SortOrder No
quote_count SortOrder No
reply_count SortOrder No
retweet_count SortOrder No
favorite_count SortOrder No
vote_count SortOrder No
possibly_sensitive SortOrder No
lang SortOrder No
created_at SortOrder No
author_id SortOrder No
quoted_tweet_id SortOrder No
in_reply_to_status_id SortOrder No

TweetSumOrderByAggregateInput

Name Type Nullable
quote_count SortOrder No
reply_count SortOrder No
retweet_count SortOrder No
favorite_count SortOrder No
vote_count SortOrder No

MessageNullableRelationFilter

Name Type Nullable
is MessageWhereInput | Null Yes
isNot MessageWhereInput | Null Yes

MediaCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
media_url SortOrder No
media_type SortOrder No
media_path SortOrder No
tweet_id SortOrder No
message_id SortOrder No

MediaMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
media_url SortOrder No
media_type SortOrder No
media_path SortOrder No
tweet_id SortOrder No
message_id SortOrder No

MediaMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
media_url SortOrder No
media_type SortOrder No
media_path SortOrder No
tweet_id SortOrder No
message_id SortOrder No

TweetRelationFilter

Name Type Nullable
is TweetWhereInput No
isNot TweetWhereInput No

LikeCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No

LikeMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No

LikeMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No

ReputationCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
session_owner_id SortOrder No
reputation_status SortOrder No
created_at SortOrder No

ReputationMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
session_owner_id SortOrder No
reputation_status SortOrder No
created_at SortOrder No

ReputationMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
session_owner_id SortOrder No
reputation_status SortOrder No
created_at SortOrder No

VoteCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
vote_status SortOrder No
created_at SortOrder No

VoteMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
vote_status SortOrder No
created_at SortOrder No

VoteMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
vote_status SortOrder No
created_at SortOrder No

RetweetCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No

RetweetMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No

RetweetMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No

BookmarkCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No

BookmarkMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No

BookmarkMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
tweet_id SortOrder No
user_id SortOrder No
created_at SortOrder No

HashtagCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
text SortOrder No
hashtag SortOrder No
score SortOrder No
created_at SortOrder No

HashtagAvgOrderByAggregateInput

Name Type Nullable
score SortOrder No

HashtagMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
text SortOrder No
hashtag SortOrder No
score SortOrder No
created_at SortOrder No

HashtagMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
text SortOrder No
hashtag SortOrder No
score SortOrder No
created_at SortOrder No

HashtagSumOrderByAggregateInput

Name Type Nullable
score SortOrder No

ConversationRelationFilter

Name Type Nullable
is ConversationWhereInput No
isNot ConversationWhereInput No

MessageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
text SortOrder No
image SortOrder No
created_at SortOrder No
sender_id SortOrder No
receiver_id SortOrder No
conversation_id SortOrder No

MessageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
text SortOrder No
image SortOrder No
created_at SortOrder No
sender_id SortOrder No
receiver_id SortOrder No
conversation_id SortOrder No

MessageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
text SortOrder No
image SortOrder No
created_at SortOrder No
sender_id SortOrder No
receiver_id SortOrder No
conversation_id SortOrder No

ConversationCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No

ConversationMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No

ConversationMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
created_at SortOrder No

CryptoLoginNonceCountOrderByAggregateInput

Name Type Nullable
userId SortOrder No
nonce SortOrder No
expires SortOrder No

CryptoLoginNonceMaxOrderByAggregateInput

Name Type Nullable
userId SortOrder No
nonce SortOrder No
expires SortOrder No

CryptoLoginNonceMinOrderByAggregateInput

Name Type Nullable
userId SortOrder No
nonce SortOrder No
expires SortOrder No

StringFieldUpdateOperationsInput

Name Type Nullable
set String No

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No

UserCreateNestedOneWithoutAccountsInput

Name Type Nullable
create UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput No
connectOrCreate UserCreateOrConnectWithoutAccountsInput No
connect UserWhereUniqueInput No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No


UserCreateNestedOneWithoutSessionsInput

Name Type Nullable
create UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput No
connectOrCreate UserCreateOrConnectWithoutSessionsInput No
connect UserWhereUniqueInput No


CryptoLoginNonceCreateNestedOneWithoutUserInput

Name Type Nullable
create CryptoLoginNonceCreateWithoutUserInput | CryptoLoginNonceUncheckedCreateWithoutUserInput No
connectOrCreate CryptoLoginNonceCreateOrConnectWithoutUserInput No
connect CryptoLoginNonceWhereUniqueInput No















TweetCreateNestedOneWithoutPinned_by_usersInput

Name Type Nullable
create TweetCreateWithoutPinned_by_usersInput | TweetUncheckedCreateWithoutPinned_by_usersInput No
connectOrCreate TweetCreateOrConnectWithoutPinned_by_usersInput No
connect TweetWhereUniqueInput No

CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput

Name Type Nullable
create CryptoLoginNonceCreateWithoutUserInput | CryptoLoginNonceUncheckedCreateWithoutUserInput No
connectOrCreate CryptoLoginNonceCreateOrConnectWithoutUserInput No
connect CryptoLoginNonceWhereUniqueInput No















BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No

NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes

EnumUserRoleFieldUpdateOperationsInput

Name Type Nullable
set UserRole No

IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No

FloatFieldUpdateOperationsInput

Name Type Nullable
set Float No
increment Float No
decrement Float No
multiply Float No
divide Float No


AccountUpdateManyWithoutUserNestedInput

Name Type Nullable
create AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] No
connectOrCreate AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] No
upsert AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] No
createMany AccountCreateManyUserInputEnvelope No
set AccountWhereUniqueInput | AccountWhereUniqueInput[] No
disconnect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
delete AccountWhereUniqueInput | AccountWhereUniqueInput[] No
connect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
update AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] No
deleteMany AccountScalarWhereInput | AccountScalarWhereInput[] No

SessionUpdateManyWithoutUserNestedInput

Name Type Nullable
create SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] No
connectOrCreate SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] No
upsert SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] No
createMany SessionCreateManyUserInputEnvelope No
set SessionWhereUniqueInput | SessionWhereUniqueInput[] No
disconnect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
delete SessionWhereUniqueInput | SessionWhereUniqueInput[] No
connect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
update SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] No
deleteMany SessionScalarWhereInput | SessionScalarWhereInput[] No

TweetUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create TweetCreateWithoutAuthorInput | TweetCreateWithoutAuthorInput[] | TweetUncheckedCreateWithoutAuthorInput | TweetUncheckedCreateWithoutAuthorInput[] No
connectOrCreate TweetCreateOrConnectWithoutAuthorInput | TweetCreateOrConnectWithoutAuthorInput[] No
upsert TweetUpsertWithWhereUniqueWithoutAuthorInput | TweetUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany TweetCreateManyAuthorInputEnvelope No
set TweetWhereUniqueInput | TweetWhereUniqueInput[] No
disconnect TweetWhereUniqueInput | TweetWhereUniqueInput[] No
delete TweetWhereUniqueInput | TweetWhereUniqueInput[] No
connect TweetWhereUniqueInput | TweetWhereUniqueInput[] No
update TweetUpdateWithWhereUniqueWithoutAuthorInput | TweetUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany TweetUpdateManyWithWhereWithoutAuthorInput | TweetUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany TweetScalarWhereInput | TweetScalarWhereInput[] No

LikeUpdateManyWithoutUserNestedInput

Name Type Nullable
create LikeCreateWithoutUserInput | LikeCreateWithoutUserInput[] | LikeUncheckedCreateWithoutUserInput | LikeUncheckedCreateWithoutUserInput[] No
connectOrCreate LikeCreateOrConnectWithoutUserInput | LikeCreateOrConnectWithoutUserInput[] No
upsert LikeUpsertWithWhereUniqueWithoutUserInput | LikeUpsertWithWhereUniqueWithoutUserInput[] No
createMany LikeCreateManyUserInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutUserInput | LikeUpdateWithWhereUniqueWithoutUserInput[] No
updateMany LikeUpdateManyWithWhereWithoutUserInput | LikeUpdateManyWithWhereWithoutUserInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

ReputationUpdateManyWithoutUserNestedInput

Name Type Nullable
create ReputationCreateWithoutUserInput | ReputationCreateWithoutUserInput[] | ReputationUncheckedCreateWithoutUserInput | ReputationUncheckedCreateWithoutUserInput[] No
connectOrCreate ReputationCreateOrConnectWithoutUserInput | ReputationCreateOrConnectWithoutUserInput[] No
upsert ReputationUpsertWithWhereUniqueWithoutUserInput | ReputationUpsertWithWhereUniqueWithoutUserInput[] No
createMany ReputationCreateManyUserInputEnvelope No
set ReputationWhereUniqueInput | ReputationWhereUniqueInput[] No
disconnect ReputationWhereUniqueInput | ReputationWhereUniqueInput[] No
delete ReputationWhereUniqueInput | ReputationWhereUniqueInput[] No
connect ReputationWhereUniqueInput | ReputationWhereUniqueInput[] No
update ReputationUpdateWithWhereUniqueWithoutUserInput | ReputationUpdateWithWhereUniqueWithoutUserInput[] No
updateMany ReputationUpdateManyWithWhereWithoutUserInput | ReputationUpdateManyWithWhereWithoutUserInput[] No
deleteMany ReputationScalarWhereInput | ReputationScalarWhereInput[] No

VoteUpdateManyWithoutUserNestedInput

Name Type Nullable
create VoteCreateWithoutUserInput | VoteCreateWithoutUserInput[] | VoteUncheckedCreateWithoutUserInput | VoteUncheckedCreateWithoutUserInput[] No
connectOrCreate VoteCreateOrConnectWithoutUserInput | VoteCreateOrConnectWithoutUserInput[] No
upsert VoteUpsertWithWhereUniqueWithoutUserInput | VoteUpsertWithWhereUniqueWithoutUserInput[] No
createMany VoteCreateManyUserInputEnvelope No
set VoteWhereUniqueInput | VoteWhereUniqueInput[] No
disconnect VoteWhereUniqueInput | VoteWhereUniqueInput[] No
delete VoteWhereUniqueInput | VoteWhereUniqueInput[] No
connect VoteWhereUniqueInput | VoteWhereUniqueInput[] No
update VoteUpdateWithWhereUniqueWithoutUserInput | VoteUpdateWithWhereUniqueWithoutUserInput[] No
updateMany VoteUpdateManyWithWhereWithoutUserInput | VoteUpdateManyWithWhereWithoutUserInput[] No
deleteMany VoteScalarWhereInput | VoteScalarWhereInput[] No

FollowerUpdateManyWithoutFollowerNestedInput

Name Type Nullable
create FollowerCreateWithoutFollowerInput | FollowerCreateWithoutFollowerInput[] | FollowerUncheckedCreateWithoutFollowerInput | FollowerUncheckedCreateWithoutFollowerInput[] No
connectOrCreate FollowerCreateOrConnectWithoutFollowerInput | FollowerCreateOrConnectWithoutFollowerInput[] No
upsert FollowerUpsertWithWhereUniqueWithoutFollowerInput | FollowerUpsertWithWhereUniqueWithoutFollowerInput[] No
createMany FollowerCreateManyFollowerInputEnvelope No
set FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
disconnect FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
delete FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
connect FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
update FollowerUpdateWithWhereUniqueWithoutFollowerInput | FollowerUpdateWithWhereUniqueWithoutFollowerInput[] No
updateMany FollowerUpdateManyWithWhereWithoutFollowerInput | FollowerUpdateManyWithWhereWithoutFollowerInput[] No
deleteMany FollowerScalarWhereInput | FollowerScalarWhereInput[] No

FollowerUpdateManyWithoutFollowedNestedInput

Name Type Nullable
create FollowerCreateWithoutFollowedInput | FollowerCreateWithoutFollowedInput[] | FollowerUncheckedCreateWithoutFollowedInput | FollowerUncheckedCreateWithoutFollowedInput[] No
connectOrCreate FollowerCreateOrConnectWithoutFollowedInput | FollowerCreateOrConnectWithoutFollowedInput[] No
upsert FollowerUpsertWithWhereUniqueWithoutFollowedInput | FollowerUpsertWithWhereUniqueWithoutFollowedInput[] No
createMany FollowerCreateManyFollowedInputEnvelope No
set FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
disconnect FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
delete FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
connect FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
update FollowerUpdateWithWhereUniqueWithoutFollowedInput | FollowerUpdateWithWhereUniqueWithoutFollowedInput[] No
updateMany FollowerUpdateManyWithWhereWithoutFollowedInput | FollowerUpdateManyWithWhereWithoutFollowedInput[] No
deleteMany FollowerScalarWhereInput | FollowerScalarWhereInput[] No

TransactionUpdateManyWithoutUserNestedInput

Name Type Nullable
create TransactionCreateWithoutUserInput | TransactionCreateWithoutUserInput[] | TransactionUncheckedCreateWithoutUserInput | TransactionUncheckedCreateWithoutUserInput[] No
connectOrCreate TransactionCreateOrConnectWithoutUserInput | TransactionCreateOrConnectWithoutUserInput[] No
upsert TransactionUpsertWithWhereUniqueWithoutUserInput | TransactionUpsertWithWhereUniqueWithoutUserInput[] No
createMany TransactionCreateManyUserInputEnvelope No
set TransactionWhereUniqueInput | TransactionWhereUniqueInput[] No
disconnect TransactionWhereUniqueInput | TransactionWhereUniqueInput[] No
delete TransactionWhereUniqueInput | TransactionWhereUniqueInput[] No
connect TransactionWhereUniqueInput | TransactionWhereUniqueInput[] No
update TransactionUpdateWithWhereUniqueWithoutUserInput | TransactionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany TransactionUpdateManyWithWhereWithoutUserInput | TransactionUpdateManyWithWhereWithoutUserInput[] No
deleteMany TransactionScalarWhereInput | TransactionScalarWhereInput[] No

RetweetUpdateManyWithoutUserNestedInput

Name Type Nullable
create RetweetCreateWithoutUserInput | RetweetCreateWithoutUserInput[] | RetweetUncheckedCreateWithoutUserInput | RetweetUncheckedCreateWithoutUserInput[] No
connectOrCreate RetweetCreateOrConnectWithoutUserInput | RetweetCreateOrConnectWithoutUserInput[] No
upsert RetweetUpsertWithWhereUniqueWithoutUserInput | RetweetUpsertWithWhereUniqueWithoutUserInput[] No
createMany RetweetCreateManyUserInputEnvelope No
set RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
disconnect RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
delete RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
connect RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
update RetweetUpdateWithWhereUniqueWithoutUserInput | RetweetUpdateWithWhereUniqueWithoutUserInput[] No
updateMany RetweetUpdateManyWithWhereWithoutUserInput | RetweetUpdateManyWithWhereWithoutUserInput[] No
deleteMany RetweetScalarWhereInput | RetweetScalarWhereInput[] No

BookmarkUpdateManyWithoutUserNestedInput

Name Type Nullable
create BookmarkCreateWithoutUserInput | BookmarkCreateWithoutUserInput[] | BookmarkUncheckedCreateWithoutUserInput | BookmarkUncheckedCreateWithoutUserInput[] No
connectOrCreate BookmarkCreateOrConnectWithoutUserInput | BookmarkCreateOrConnectWithoutUserInput[] No
upsert BookmarkUpsertWithWhereUniqueWithoutUserInput | BookmarkUpsertWithWhereUniqueWithoutUserInput[] No
createMany BookmarkCreateManyUserInputEnvelope No
set BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
disconnect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
delete BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
connect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
update BookmarkUpdateWithWhereUniqueWithoutUserInput | BookmarkUpdateWithWhereUniqueWithoutUserInput[] No
updateMany BookmarkUpdateManyWithWhereWithoutUserInput | BookmarkUpdateManyWithWhereWithoutUserInput[] No
deleteMany BookmarkScalarWhereInput | BookmarkScalarWhereInput[] No

MessageUpdateManyWithoutReceiverNestedInput

Name Type Nullable
create MessageCreateWithoutReceiverInput | MessageCreateWithoutReceiverInput[] | MessageUncheckedCreateWithoutReceiverInput | MessageUncheckedCreateWithoutReceiverInput[] No
connectOrCreate MessageCreateOrConnectWithoutReceiverInput | MessageCreateOrConnectWithoutReceiverInput[] No
upsert MessageUpsertWithWhereUniqueWithoutReceiverInput | MessageUpsertWithWhereUniqueWithoutReceiverInput[] No
createMany MessageCreateManyReceiverInputEnvelope No
set MessageWhereUniqueInput | MessageWhereUniqueInput[] No
disconnect MessageWhereUniqueInput | MessageWhereUniqueInput[] No
delete MessageWhereUniqueInput | MessageWhereUniqueInput[] No
connect MessageWhereUniqueInput | MessageWhereUniqueInput[] No
update MessageUpdateWithWhereUniqueWithoutReceiverInput | MessageUpdateWithWhereUniqueWithoutReceiverInput[] No
updateMany MessageUpdateManyWithWhereWithoutReceiverInput | MessageUpdateManyWithWhereWithoutReceiverInput[] No
deleteMany MessageScalarWhereInput | MessageScalarWhereInput[] No

MessageUpdateManyWithoutSenderNestedInput

Name Type Nullable
create MessageCreateWithoutSenderInput | MessageCreateWithoutSenderInput[] | MessageUncheckedCreateWithoutSenderInput | MessageUncheckedCreateWithoutSenderInput[] No
connectOrCreate MessageCreateOrConnectWithoutSenderInput | MessageCreateOrConnectWithoutSenderInput[] No
upsert MessageUpsertWithWhereUniqueWithoutSenderInput | MessageUpsertWithWhereUniqueWithoutSenderInput[] No
createMany MessageCreateManySenderInputEnvelope No
set MessageWhereUniqueInput | MessageWhereUniqueInput[] No
disconnect MessageWhereUniqueInput | MessageWhereUniqueInput[] No
delete MessageWhereUniqueInput | MessageWhereUniqueInput[] No
connect MessageWhereUniqueInput | MessageWhereUniqueInput[] No
update MessageUpdateWithWhereUniqueWithoutSenderInput | MessageUpdateWithWhereUniqueWithoutSenderInput[] No
updateMany MessageUpdateManyWithWhereWithoutSenderInput | MessageUpdateManyWithWhereWithoutSenderInput[] No
deleteMany MessageScalarWhereInput | MessageScalarWhereInput[] No

ConversationUpdateManyWithoutUsersNestedInput

Name Type Nullable
create ConversationCreateWithoutUsersInput | ConversationCreateWithoutUsersInput[] | ConversationUncheckedCreateWithoutUsersInput | ConversationUncheckedCreateWithoutUsersInput[] No
connectOrCreate ConversationCreateOrConnectWithoutUsersInput | ConversationCreateOrConnectWithoutUsersInput[] No
upsert ConversationUpsertWithWhereUniqueWithoutUsersInput | ConversationUpsertWithWhereUniqueWithoutUsersInput[] No
set ConversationWhereUniqueInput | ConversationWhereUniqueInput[] No
disconnect ConversationWhereUniqueInput | ConversationWhereUniqueInput[] No
delete ConversationWhereUniqueInput | ConversationWhereUniqueInput[] No
connect ConversationWhereUniqueInput | ConversationWhereUniqueInput[] No
update ConversationUpdateWithWhereUniqueWithoutUsersInput | ConversationUpdateWithWhereUniqueWithoutUsersInput[] No
updateMany ConversationUpdateManyWithWhereWithoutUsersInput | ConversationUpdateManyWithWhereWithoutUsersInput[] No
deleteMany ConversationScalarWhereInput | ConversationScalarWhereInput[] No



AccountUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] No
connectOrCreate AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] No
upsert AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] No
createMany AccountCreateManyUserInputEnvelope No
set AccountWhereUniqueInput | AccountWhereUniqueInput[] No
disconnect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
delete AccountWhereUniqueInput | AccountWhereUniqueInput[] No
connect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
update AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] No
deleteMany AccountScalarWhereInput | AccountScalarWhereInput[] No

SessionUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] No
connectOrCreate SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] No
upsert SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] No
createMany SessionCreateManyUserInputEnvelope No
set SessionWhereUniqueInput | SessionWhereUniqueInput[] No
disconnect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
delete SessionWhereUniqueInput | SessionWhereUniqueInput[] No
connect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
update SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] No
deleteMany SessionScalarWhereInput | SessionScalarWhereInput[] No

TweetUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create TweetCreateWithoutAuthorInput | TweetCreateWithoutAuthorInput[] | TweetUncheckedCreateWithoutAuthorInput | TweetUncheckedCreateWithoutAuthorInput[] No
connectOrCreate TweetCreateOrConnectWithoutAuthorInput | TweetCreateOrConnectWithoutAuthorInput[] No
upsert TweetUpsertWithWhereUniqueWithoutAuthorInput | TweetUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany TweetCreateManyAuthorInputEnvelope No
set TweetWhereUniqueInput | TweetWhereUniqueInput[] No
disconnect TweetWhereUniqueInput | TweetWhereUniqueInput[] No
delete TweetWhereUniqueInput | TweetWhereUniqueInput[] No
connect TweetWhereUniqueInput | TweetWhereUniqueInput[] No
update TweetUpdateWithWhereUniqueWithoutAuthorInput | TweetUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany TweetUpdateManyWithWhereWithoutAuthorInput | TweetUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany TweetScalarWhereInput | TweetScalarWhereInput[] No

LikeUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create LikeCreateWithoutUserInput | LikeCreateWithoutUserInput[] | LikeUncheckedCreateWithoutUserInput | LikeUncheckedCreateWithoutUserInput[] No
connectOrCreate LikeCreateOrConnectWithoutUserInput | LikeCreateOrConnectWithoutUserInput[] No
upsert LikeUpsertWithWhereUniqueWithoutUserInput | LikeUpsertWithWhereUniqueWithoutUserInput[] No
createMany LikeCreateManyUserInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutUserInput | LikeUpdateWithWhereUniqueWithoutUserInput[] No
updateMany LikeUpdateManyWithWhereWithoutUserInput | LikeUpdateManyWithWhereWithoutUserInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

ReputationUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create ReputationCreateWithoutUserInput | ReputationCreateWithoutUserInput[] | ReputationUncheckedCreateWithoutUserInput | ReputationUncheckedCreateWithoutUserInput[] No
connectOrCreate ReputationCreateOrConnectWithoutUserInput | ReputationCreateOrConnectWithoutUserInput[] No
upsert ReputationUpsertWithWhereUniqueWithoutUserInput | ReputationUpsertWithWhereUniqueWithoutUserInput[] No
createMany ReputationCreateManyUserInputEnvelope No
set ReputationWhereUniqueInput | ReputationWhereUniqueInput[] No
disconnect ReputationWhereUniqueInput | ReputationWhereUniqueInput[] No
delete ReputationWhereUniqueInput | ReputationWhereUniqueInput[] No
connect ReputationWhereUniqueInput | ReputationWhereUniqueInput[] No
update ReputationUpdateWithWhereUniqueWithoutUserInput | ReputationUpdateWithWhereUniqueWithoutUserInput[] No
updateMany ReputationUpdateManyWithWhereWithoutUserInput | ReputationUpdateManyWithWhereWithoutUserInput[] No
deleteMany ReputationScalarWhereInput | ReputationScalarWhereInput[] No

VoteUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create VoteCreateWithoutUserInput | VoteCreateWithoutUserInput[] | VoteUncheckedCreateWithoutUserInput | VoteUncheckedCreateWithoutUserInput[] No
connectOrCreate VoteCreateOrConnectWithoutUserInput | VoteCreateOrConnectWithoutUserInput[] No
upsert VoteUpsertWithWhereUniqueWithoutUserInput | VoteUpsertWithWhereUniqueWithoutUserInput[] No
createMany VoteCreateManyUserInputEnvelope No
set VoteWhereUniqueInput | VoteWhereUniqueInput[] No
disconnect VoteWhereUniqueInput | VoteWhereUniqueInput[] No
delete VoteWhereUniqueInput | VoteWhereUniqueInput[] No
connect VoteWhereUniqueInput | VoteWhereUniqueInput[] No
update VoteUpdateWithWhereUniqueWithoutUserInput | VoteUpdateWithWhereUniqueWithoutUserInput[] No
updateMany VoteUpdateManyWithWhereWithoutUserInput | VoteUpdateManyWithWhereWithoutUserInput[] No
deleteMany VoteScalarWhereInput | VoteScalarWhereInput[] No

FollowerUncheckedUpdateManyWithoutFollowerNestedInput

Name Type Nullable
create FollowerCreateWithoutFollowerInput | FollowerCreateWithoutFollowerInput[] | FollowerUncheckedCreateWithoutFollowerInput | FollowerUncheckedCreateWithoutFollowerInput[] No
connectOrCreate FollowerCreateOrConnectWithoutFollowerInput | FollowerCreateOrConnectWithoutFollowerInput[] No
upsert FollowerUpsertWithWhereUniqueWithoutFollowerInput | FollowerUpsertWithWhereUniqueWithoutFollowerInput[] No
createMany FollowerCreateManyFollowerInputEnvelope No
set FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
disconnect FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
delete FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
connect FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
update FollowerUpdateWithWhereUniqueWithoutFollowerInput | FollowerUpdateWithWhereUniqueWithoutFollowerInput[] No
updateMany FollowerUpdateManyWithWhereWithoutFollowerInput | FollowerUpdateManyWithWhereWithoutFollowerInput[] No
deleteMany FollowerScalarWhereInput | FollowerScalarWhereInput[] No

FollowerUncheckedUpdateManyWithoutFollowedNestedInput

Name Type Nullable
create FollowerCreateWithoutFollowedInput | FollowerCreateWithoutFollowedInput[] | FollowerUncheckedCreateWithoutFollowedInput | FollowerUncheckedCreateWithoutFollowedInput[] No
connectOrCreate FollowerCreateOrConnectWithoutFollowedInput | FollowerCreateOrConnectWithoutFollowedInput[] No
upsert FollowerUpsertWithWhereUniqueWithoutFollowedInput | FollowerUpsertWithWhereUniqueWithoutFollowedInput[] No
createMany FollowerCreateManyFollowedInputEnvelope No
set FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
disconnect FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
delete FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
connect FollowerWhereUniqueInput | FollowerWhereUniqueInput[] No
update FollowerUpdateWithWhereUniqueWithoutFollowedInput | FollowerUpdateWithWhereUniqueWithoutFollowedInput[] No
updateMany FollowerUpdateManyWithWhereWithoutFollowedInput | FollowerUpdateManyWithWhereWithoutFollowedInput[] No
deleteMany FollowerScalarWhereInput | FollowerScalarWhereInput[] No

TransactionUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create TransactionCreateWithoutUserInput | TransactionCreateWithoutUserInput[] | TransactionUncheckedCreateWithoutUserInput | TransactionUncheckedCreateWithoutUserInput[] No
connectOrCreate TransactionCreateOrConnectWithoutUserInput | TransactionCreateOrConnectWithoutUserInput[] No
upsert TransactionUpsertWithWhereUniqueWithoutUserInput | TransactionUpsertWithWhereUniqueWithoutUserInput[] No
createMany TransactionCreateManyUserInputEnvelope No
set TransactionWhereUniqueInput | TransactionWhereUniqueInput[] No
disconnect TransactionWhereUniqueInput | TransactionWhereUniqueInput[] No
delete TransactionWhereUniqueInput | TransactionWhereUniqueInput[] No
connect TransactionWhereUniqueInput | TransactionWhereUniqueInput[] No
update TransactionUpdateWithWhereUniqueWithoutUserInput | TransactionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany TransactionUpdateManyWithWhereWithoutUserInput | TransactionUpdateManyWithWhereWithoutUserInput[] No
deleteMany TransactionScalarWhereInput | TransactionScalarWhereInput[] No

RetweetUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create RetweetCreateWithoutUserInput | RetweetCreateWithoutUserInput[] | RetweetUncheckedCreateWithoutUserInput | RetweetUncheckedCreateWithoutUserInput[] No
connectOrCreate RetweetCreateOrConnectWithoutUserInput | RetweetCreateOrConnectWithoutUserInput[] No
upsert RetweetUpsertWithWhereUniqueWithoutUserInput | RetweetUpsertWithWhereUniqueWithoutUserInput[] No
createMany RetweetCreateManyUserInputEnvelope No
set RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
disconnect RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
delete RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
connect RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
update RetweetUpdateWithWhereUniqueWithoutUserInput | RetweetUpdateWithWhereUniqueWithoutUserInput[] No
updateMany RetweetUpdateManyWithWhereWithoutUserInput | RetweetUpdateManyWithWhereWithoutUserInput[] No
deleteMany RetweetScalarWhereInput | RetweetScalarWhereInput[] No

BookmarkUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create BookmarkCreateWithoutUserInput | BookmarkCreateWithoutUserInput[] | BookmarkUncheckedCreateWithoutUserInput | BookmarkUncheckedCreateWithoutUserInput[] No
connectOrCreate BookmarkCreateOrConnectWithoutUserInput | BookmarkCreateOrConnectWithoutUserInput[] No
upsert BookmarkUpsertWithWhereUniqueWithoutUserInput | BookmarkUpsertWithWhereUniqueWithoutUserInput[] No
createMany BookmarkCreateManyUserInputEnvelope No
set BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
disconnect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
delete BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
connect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
update BookmarkUpdateWithWhereUniqueWithoutUserInput | BookmarkUpdateWithWhereUniqueWithoutUserInput[] No
updateMany BookmarkUpdateManyWithWhereWithoutUserInput | BookmarkUpdateManyWithWhereWithoutUserInput[] No
deleteMany BookmarkScalarWhereInput | BookmarkScalarWhereInput[] No

MessageUncheckedUpdateManyWithoutReceiverNestedInput

Name Type Nullable
create MessageCreateWithoutReceiverInput | MessageCreateWithoutReceiverInput[] | MessageUncheckedCreateWithoutReceiverInput | MessageUncheckedCreateWithoutReceiverInput[] No
connectOrCreate MessageCreateOrConnectWithoutReceiverInput | MessageCreateOrConnectWithoutReceiverInput[] No
upsert MessageUpsertWithWhereUniqueWithoutReceiverInput | MessageUpsertWithWhereUniqueWithoutReceiverInput[] No
createMany MessageCreateManyReceiverInputEnvelope No
set MessageWhereUniqueInput | MessageWhereUniqueInput[] No
disconnect MessageWhereUniqueInput | MessageWhereUniqueInput[] No
delete MessageWhereUniqueInput | MessageWhereUniqueInput[] No
connect MessageWhereUniqueInput | MessageWhereUniqueInput[] No
update MessageUpdateWithWhereUniqueWithoutReceiverInput | MessageUpdateWithWhereUniqueWithoutReceiverInput[] No
updateMany MessageUpdateManyWithWhereWithoutReceiverInput | MessageUpdateManyWithWhereWithoutReceiverInput[] No
deleteMany MessageScalarWhereInput | MessageScalarWhereInput[] No

MessageUncheckedUpdateManyWithoutSenderNestedInput

Name Type Nullable
create MessageCreateWithoutSenderInput | MessageCreateWithoutSenderInput[] | MessageUncheckedCreateWithoutSenderInput | MessageUncheckedCreateWithoutSenderInput[] No
connectOrCreate MessageCreateOrConnectWithoutSenderInput | MessageCreateOrConnectWithoutSenderInput[] No
upsert MessageUpsertWithWhereUniqueWithoutSenderInput | MessageUpsertWithWhereUniqueWithoutSenderInput[] No
createMany MessageCreateManySenderInputEnvelope No
set MessageWhereUniqueInput | MessageWhereUniqueInput[] No
disconnect MessageWhereUniqueInput | MessageWhereUniqueInput[] No
delete MessageWhereUniqueInput | MessageWhereUniqueInput[] No
connect MessageWhereUniqueInput | MessageWhereUniqueInput[] No
update MessageUpdateWithWhereUniqueWithoutSenderInput | MessageUpdateWithWhereUniqueWithoutSenderInput[] No
updateMany MessageUpdateManyWithWhereWithoutSenderInput | MessageUpdateManyWithWhereWithoutSenderInput[] No
deleteMany MessageScalarWhereInput | MessageScalarWhereInput[] No

ConversationUncheckedUpdateManyWithoutUsersNestedInput

Name Type Nullable
create ConversationCreateWithoutUsersInput | ConversationCreateWithoutUsersInput[] | ConversationUncheckedCreateWithoutUsersInput | ConversationUncheckedCreateWithoutUsersInput[] No
connectOrCreate ConversationCreateOrConnectWithoutUsersInput | ConversationCreateOrConnectWithoutUsersInput[] No
upsert ConversationUpsertWithWhereUniqueWithoutUsersInput | ConversationUpsertWithWhereUniqueWithoutUsersInput[] No
set ConversationWhereUniqueInput | ConversationWhereUniqueInput[] No
disconnect ConversationWhereUniqueInput | ConversationWhereUniqueInput[] No
delete ConversationWhereUniqueInput | ConversationWhereUniqueInput[] No
connect ConversationWhereUniqueInput | ConversationWhereUniqueInput[] No
update ConversationUpdateWithWhereUniqueWithoutUsersInput | ConversationUpdateWithWhereUniqueWithoutUsersInput[] No
updateMany ConversationUpdateManyWithWhereWithoutUsersInput | ConversationUpdateManyWithWhereWithoutUsersInput[] No
deleteMany ConversationScalarWhereInput | ConversationScalarWhereInput[] No

UserCreateNestedOneWithoutFollowersInput

Name Type Nullable
create UserCreateWithoutFollowersInput | UserUncheckedCreateWithoutFollowersInput No
connectOrCreate UserCreateOrConnectWithoutFollowersInput No
connect UserWhereUniqueInput No

UserCreateNestedOneWithoutFollowingInput

Name Type Nullable
create UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput No
connectOrCreate UserCreateOrConnectWithoutFollowingInput No
connect UserWhereUniqueInput No



UserCreateNestedOneWithoutTransactionsInput

Name Type Nullable
create UserCreateWithoutTransactionsInput | UserUncheckedCreateWithoutTransactionsInput No
connectOrCreate UserCreateOrConnectWithoutTransactionsInput No
connect UserWhereUniqueInput No


UserCreateNestedOneWithoutTweetsInput

Name Type Nullable
create UserCreateWithoutTweetsInput | UserUncheckedCreateWithoutTweetsInput No
connectOrCreate UserCreateOrConnectWithoutTweetsInput No
connect UserWhereUniqueInput No






TweetCreateNestedOneWithoutQuotesInput

Name Type Nullable
create TweetCreateWithoutQuotesInput | TweetUncheckedCreateWithoutQuotesInput No
connectOrCreate TweetCreateOrConnectWithoutQuotesInput No
connect TweetWhereUniqueInput No


TweetCreateNestedOneWithoutCommentsInput

Name Type Nullable
create TweetCreateWithoutCommentsInput | TweetUncheckedCreateWithoutCommentsInput No
connectOrCreate TweetCreateOrConnectWithoutCommentsInput No
connect TweetWhereUniqueInput No












MediaUpdateManyWithoutTweetNestedInput

Name Type Nullable
create MediaCreateWithoutTweetInput | MediaCreateWithoutTweetInput[] | MediaUncheckedCreateWithoutTweetInput | MediaUncheckedCreateWithoutTweetInput[] No
connectOrCreate MediaCreateOrConnectWithoutTweetInput | MediaCreateOrConnectWithoutTweetInput[] No
upsert MediaUpsertWithWhereUniqueWithoutTweetInput | MediaUpsertWithWhereUniqueWithoutTweetInput[] No
createMany MediaCreateManyTweetInputEnvelope No
set MediaWhereUniqueInput | MediaWhereUniqueInput[] No
disconnect MediaWhereUniqueInput | MediaWhereUniqueInput[] No
delete MediaWhereUniqueInput | MediaWhereUniqueInput[] No
connect MediaWhereUniqueInput | MediaWhereUniqueInput[] No
update MediaUpdateWithWhereUniqueWithoutTweetInput | MediaUpdateWithWhereUniqueWithoutTweetInput[] No
updateMany MediaUpdateManyWithWhereWithoutTweetInput | MediaUpdateManyWithWhereWithoutTweetInput[] No
deleteMany MediaScalarWhereInput | MediaScalarWhereInput[] No

LikeUpdateManyWithoutTweetNestedInput

Name Type Nullable
create LikeCreateWithoutTweetInput | LikeCreateWithoutTweetInput[] | LikeUncheckedCreateWithoutTweetInput | LikeUncheckedCreateWithoutTweetInput[] No
connectOrCreate LikeCreateOrConnectWithoutTweetInput | LikeCreateOrConnectWithoutTweetInput[] No
upsert LikeUpsertWithWhereUniqueWithoutTweetInput | LikeUpsertWithWhereUniqueWithoutTweetInput[] No
createMany LikeCreateManyTweetInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutTweetInput | LikeUpdateWithWhereUniqueWithoutTweetInput[] No
updateMany LikeUpdateManyWithWhereWithoutTweetInput | LikeUpdateManyWithWhereWithoutTweetInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

VoteUpdateManyWithoutTweetNestedInput

Name Type Nullable
create VoteCreateWithoutTweetInput | VoteCreateWithoutTweetInput[] | VoteUncheckedCreateWithoutTweetInput | VoteUncheckedCreateWithoutTweetInput[] No
connectOrCreate VoteCreateOrConnectWithoutTweetInput | VoteCreateOrConnectWithoutTweetInput[] No
upsert VoteUpsertWithWhereUniqueWithoutTweetInput | VoteUpsertWithWhereUniqueWithoutTweetInput[] No
createMany VoteCreateManyTweetInputEnvelope No
set VoteWhereUniqueInput | VoteWhereUniqueInput[] No
disconnect VoteWhereUniqueInput | VoteWhereUniqueInput[] No
delete VoteWhereUniqueInput | VoteWhereUniqueInput[] No
connect VoteWhereUniqueInput | VoteWhereUniqueInput[] No
update VoteUpdateWithWhereUniqueWithoutTweetInput | VoteUpdateWithWhereUniqueWithoutTweetInput[] No
updateMany VoteUpdateManyWithWhereWithoutTweetInput | VoteUpdateManyWithWhereWithoutTweetInput[] No
deleteMany VoteScalarWhereInput | VoteScalarWhereInput[] No

RetweetUpdateManyWithoutTweetNestedInput

Name Type Nullable
create RetweetCreateWithoutTweetInput | RetweetCreateWithoutTweetInput[] | RetweetUncheckedCreateWithoutTweetInput | RetweetUncheckedCreateWithoutTweetInput[] No
connectOrCreate RetweetCreateOrConnectWithoutTweetInput | RetweetCreateOrConnectWithoutTweetInput[] No
upsert RetweetUpsertWithWhereUniqueWithoutTweetInput | RetweetUpsertWithWhereUniqueWithoutTweetInput[] No
createMany RetweetCreateManyTweetInputEnvelope No
set RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
disconnect RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
delete RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
connect RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
update RetweetUpdateWithWhereUniqueWithoutTweetInput | RetweetUpdateWithWhereUniqueWithoutTweetInput[] No
updateMany RetweetUpdateManyWithWhereWithoutTweetInput | RetweetUpdateManyWithWhereWithoutTweetInput[] No
deleteMany RetweetScalarWhereInput | RetweetScalarWhereInput[] No

TweetUpdateManyWithoutQuoted_tweetNestedInput

Name Type Nullable
create TweetCreateWithoutQuoted_tweetInput | TweetCreateWithoutQuoted_tweetInput[] | TweetUncheckedCreateWithoutQuoted_tweetInput | TweetUncheckedCreateWithoutQuoted_tweetInput[] No
connectOrCreate TweetCreateOrConnectWithoutQuoted_tweetInput | TweetCreateOrConnectWithoutQuoted_tweetInput[] No
upsert TweetUpsertWithWhereUniqueWithoutQuoted_tweetInput | TweetUpsertWithWhereUniqueWithoutQuoted_tweetInput[] No
createMany TweetCreateManyQuoted_tweetInputEnvelope No
set TweetWhereUniqueInput | TweetWhereUniqueInput[] No
disconnect TweetWhereUniqueInput | TweetWhereUniqueInput[] No
delete TweetWhereUniqueInput | TweetWhereUniqueInput[] No
connect TweetWhereUniqueInput | TweetWhereUniqueInput[] No
update TweetUpdateWithWhereUniqueWithoutQuoted_tweetInput | TweetUpdateWithWhereUniqueWithoutQuoted_tweetInput[] No
updateMany TweetUpdateManyWithWhereWithoutQuoted_tweetInput | TweetUpdateManyWithWhereWithoutQuoted_tweetInput[] No
deleteMany TweetScalarWhereInput | TweetScalarWhereInput[] No


TweetUpdateManyWithoutTweet_commentNestedInput

Name Type Nullable
create TweetCreateWithoutTweet_commentInput | TweetCreateWithoutTweet_commentInput[] | TweetUncheckedCreateWithoutTweet_commentInput | TweetUncheckedCreateWithoutTweet_commentInput[] No
connectOrCreate TweetCreateOrConnectWithoutTweet_commentInput | TweetCreateOrConnectWithoutTweet_commentInput[] No
upsert TweetUpsertWithWhereUniqueWithoutTweet_commentInput | TweetUpsertWithWhereUniqueWithoutTweet_commentInput[] No
createMany TweetCreateManyTweet_commentInputEnvelope No
set TweetWhereUniqueInput | TweetWhereUniqueInput[] No
disconnect TweetWhereUniqueInput | TweetWhereUniqueInput[] No
delete TweetWhereUniqueInput | TweetWhereUniqueInput[] No
connect TweetWhereUniqueInput | TweetWhereUniqueInput[] No
update TweetUpdateWithWhereUniqueWithoutTweet_commentInput | TweetUpdateWithWhereUniqueWithoutTweet_commentInput[] No
updateMany TweetUpdateManyWithWhereWithoutTweet_commentInput | TweetUpdateManyWithWhereWithoutTweet_commentInput[] No
deleteMany TweetScalarWhereInput | TweetScalarWhereInput[] No


BookmarkUpdateManyWithoutTweetNestedInput

Name Type Nullable
create BookmarkCreateWithoutTweetInput | BookmarkCreateWithoutTweetInput[] | BookmarkUncheckedCreateWithoutTweetInput | BookmarkUncheckedCreateWithoutTweetInput[] No
connectOrCreate BookmarkCreateOrConnectWithoutTweetInput | BookmarkCreateOrConnectWithoutTweetInput[] No
upsert BookmarkUpsertWithWhereUniqueWithoutTweetInput | BookmarkUpsertWithWhereUniqueWithoutTweetInput[] No
createMany BookmarkCreateManyTweetInputEnvelope No
set BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
disconnect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
delete BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
connect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
update BookmarkUpdateWithWhereUniqueWithoutTweetInput | BookmarkUpdateWithWhereUniqueWithoutTweetInput[] No
updateMany BookmarkUpdateManyWithWhereWithoutTweetInput | BookmarkUpdateManyWithWhereWithoutTweetInput[] No
deleteMany BookmarkScalarWhereInput | BookmarkScalarWhereInput[] No

UserUpdateManyWithoutPinned_tweetNestedInput

Name Type Nullable
create UserCreateWithoutPinned_tweetInput | UserCreateWithoutPinned_tweetInput[] | UserUncheckedCreateWithoutPinned_tweetInput | UserUncheckedCreateWithoutPinned_tweetInput[] No
connectOrCreate UserCreateOrConnectWithoutPinned_tweetInput | UserCreateOrConnectWithoutPinned_tweetInput[] No
upsert UserUpsertWithWhereUniqueWithoutPinned_tweetInput | UserUpsertWithWhereUniqueWithoutPinned_tweetInput[] No
createMany UserCreateManyPinned_tweetInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutPinned_tweetInput | UserUpdateWithWhereUniqueWithoutPinned_tweetInput[] No
updateMany UserUpdateManyWithWhereWithoutPinned_tweetInput | UserUpdateManyWithWhereWithoutPinned_tweetInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

MediaUncheckedUpdateManyWithoutTweetNestedInput

Name Type Nullable
create MediaCreateWithoutTweetInput | MediaCreateWithoutTweetInput[] | MediaUncheckedCreateWithoutTweetInput | MediaUncheckedCreateWithoutTweetInput[] No
connectOrCreate MediaCreateOrConnectWithoutTweetInput | MediaCreateOrConnectWithoutTweetInput[] No
upsert MediaUpsertWithWhereUniqueWithoutTweetInput | MediaUpsertWithWhereUniqueWithoutTweetInput[] No
createMany MediaCreateManyTweetInputEnvelope No
set MediaWhereUniqueInput | MediaWhereUniqueInput[] No
disconnect MediaWhereUniqueInput | MediaWhereUniqueInput[] No
delete MediaWhereUniqueInput | MediaWhereUniqueInput[] No
connect MediaWhereUniqueInput | MediaWhereUniqueInput[] No
update MediaUpdateWithWhereUniqueWithoutTweetInput | MediaUpdateWithWhereUniqueWithoutTweetInput[] No
updateMany MediaUpdateManyWithWhereWithoutTweetInput | MediaUpdateManyWithWhereWithoutTweetInput[] No
deleteMany MediaScalarWhereInput | MediaScalarWhereInput[] No

LikeUncheckedUpdateManyWithoutTweetNestedInput

Name Type Nullable
create LikeCreateWithoutTweetInput | LikeCreateWithoutTweetInput[] | LikeUncheckedCreateWithoutTweetInput | LikeUncheckedCreateWithoutTweetInput[] No
connectOrCreate LikeCreateOrConnectWithoutTweetInput | LikeCreateOrConnectWithoutTweetInput[] No
upsert LikeUpsertWithWhereUniqueWithoutTweetInput | LikeUpsertWithWhereUniqueWithoutTweetInput[] No
createMany LikeCreateManyTweetInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutTweetInput | LikeUpdateWithWhereUniqueWithoutTweetInput[] No
updateMany LikeUpdateManyWithWhereWithoutTweetInput | LikeUpdateManyWithWhereWithoutTweetInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

VoteUncheckedUpdateManyWithoutTweetNestedInput

Name Type Nullable
create VoteCreateWithoutTweetInput | VoteCreateWithoutTweetInput[] | VoteUncheckedCreateWithoutTweetInput | VoteUncheckedCreateWithoutTweetInput[] No
connectOrCreate VoteCreateOrConnectWithoutTweetInput | VoteCreateOrConnectWithoutTweetInput[] No
upsert VoteUpsertWithWhereUniqueWithoutTweetInput | VoteUpsertWithWhereUniqueWithoutTweetInput[] No
createMany VoteCreateManyTweetInputEnvelope No
set VoteWhereUniqueInput | VoteWhereUniqueInput[] No
disconnect VoteWhereUniqueInput | VoteWhereUniqueInput[] No
delete VoteWhereUniqueInput | VoteWhereUniqueInput[] No
connect VoteWhereUniqueInput | VoteWhereUniqueInput[] No
update VoteUpdateWithWhereUniqueWithoutTweetInput | VoteUpdateWithWhereUniqueWithoutTweetInput[] No
updateMany VoteUpdateManyWithWhereWithoutTweetInput | VoteUpdateManyWithWhereWithoutTweetInput[] No
deleteMany VoteScalarWhereInput | VoteScalarWhereInput[] No

RetweetUncheckedUpdateManyWithoutTweetNestedInput

Name Type Nullable
create RetweetCreateWithoutTweetInput | RetweetCreateWithoutTweetInput[] | RetweetUncheckedCreateWithoutTweetInput | RetweetUncheckedCreateWithoutTweetInput[] No
connectOrCreate RetweetCreateOrConnectWithoutTweetInput | RetweetCreateOrConnectWithoutTweetInput[] No
upsert RetweetUpsertWithWhereUniqueWithoutTweetInput | RetweetUpsertWithWhereUniqueWithoutTweetInput[] No
createMany RetweetCreateManyTweetInputEnvelope No
set RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
disconnect RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
delete RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
connect RetweetWhereUniqueInput | RetweetWhereUniqueInput[] No
update RetweetUpdateWithWhereUniqueWithoutTweetInput | RetweetUpdateWithWhereUniqueWithoutTweetInput[] No
updateMany RetweetUpdateManyWithWhereWithoutTweetInput | RetweetUpdateManyWithWhereWithoutTweetInput[] No
deleteMany RetweetScalarWhereInput | RetweetScalarWhereInput[] No

TweetUncheckedUpdateManyWithoutQuoted_tweetNestedInput

Name Type Nullable
create TweetCreateWithoutQuoted_tweetInput | TweetCreateWithoutQuoted_tweetInput[] | TweetUncheckedCreateWithoutQuoted_tweetInput | TweetUncheckedCreateWithoutQuoted_tweetInput[] No
connectOrCreate TweetCreateOrConnectWithoutQuoted_tweetInput | TweetCreateOrConnectWithoutQuoted_tweetInput[] No
upsert TweetUpsertWithWhereUniqueWithoutQuoted_tweetInput | TweetUpsertWithWhereUniqueWithoutQuoted_tweetInput[] No
createMany TweetCreateManyQuoted_tweetInputEnvelope No
set TweetWhereUniqueInput | TweetWhereUniqueInput[] No
disconnect TweetWhereUniqueInput | TweetWhereUniqueInput[] No
delete TweetWhereUniqueInput | TweetWhereUniqueInput[] No
connect TweetWhereUniqueInput | TweetWhereUniqueInput[] No
update TweetUpdateWithWhereUniqueWithoutQuoted_tweetInput | TweetUpdateWithWhereUniqueWithoutQuoted_tweetInput[] No
updateMany TweetUpdateManyWithWhereWithoutQuoted_tweetInput | TweetUpdateManyWithWhereWithoutQuoted_tweetInput[] No
deleteMany TweetScalarWhereInput | TweetScalarWhereInput[] No

TweetUncheckedUpdateManyWithoutTweet_commentNestedInput

Name Type Nullable
create TweetCreateWithoutTweet_commentInput | TweetCreateWithoutTweet_commentInput[] | TweetUncheckedCreateWithoutTweet_commentInput | TweetUncheckedCreateWithoutTweet_commentInput[] No
connectOrCreate TweetCreateOrConnectWithoutTweet_commentInput | TweetCreateOrConnectWithoutTweet_commentInput[] No
upsert TweetUpsertWithWhereUniqueWithoutTweet_commentInput | TweetUpsertWithWhereUniqueWithoutTweet_commentInput[] No
createMany TweetCreateManyTweet_commentInputEnvelope No
set TweetWhereUniqueInput | TweetWhereUniqueInput[] No
disconnect TweetWhereUniqueInput | TweetWhereUniqueInput[] No
delete TweetWhereUniqueInput | TweetWhereUniqueInput[] No
connect TweetWhereUniqueInput | TweetWhereUniqueInput[] No
update TweetUpdateWithWhereUniqueWithoutTweet_commentInput | TweetUpdateWithWhereUniqueWithoutTweet_commentInput[] No
updateMany TweetUpdateManyWithWhereWithoutTweet_commentInput | TweetUpdateManyWithWhereWithoutTweet_commentInput[] No
deleteMany TweetScalarWhereInput | TweetScalarWhereInput[] No

BookmarkUncheckedUpdateManyWithoutTweetNestedInput

Name Type Nullable
create BookmarkCreateWithoutTweetInput | BookmarkCreateWithoutTweetInput[] | BookmarkUncheckedCreateWithoutTweetInput | BookmarkUncheckedCreateWithoutTweetInput[] No
connectOrCreate BookmarkCreateOrConnectWithoutTweetInput | BookmarkCreateOrConnectWithoutTweetInput[] No
upsert BookmarkUpsertWithWhereUniqueWithoutTweetInput | BookmarkUpsertWithWhereUniqueWithoutTweetInput[] No
createMany BookmarkCreateManyTweetInputEnvelope No
set BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
disconnect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
delete BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
connect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
update BookmarkUpdateWithWhereUniqueWithoutTweetInput | BookmarkUpdateWithWhereUniqueWithoutTweetInput[] No
updateMany BookmarkUpdateManyWithWhereWithoutTweetInput | BookmarkUpdateManyWithWhereWithoutTweetInput[] No
deleteMany BookmarkScalarWhereInput | BookmarkScalarWhereInput[] No

UserUncheckedUpdateManyWithoutPinned_tweetNestedInput

Name Type Nullable
create UserCreateWithoutPinned_tweetInput | UserCreateWithoutPinned_tweetInput[] | UserUncheckedCreateWithoutPinned_tweetInput | UserUncheckedCreateWithoutPinned_tweetInput[] No
connectOrCreate UserCreateOrConnectWithoutPinned_tweetInput | UserCreateOrConnectWithoutPinned_tweetInput[] No
upsert UserUpsertWithWhereUniqueWithoutPinned_tweetInput | UserUpsertWithWhereUniqueWithoutPinned_tweetInput[] No
createMany UserCreateManyPinned_tweetInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutPinned_tweetInput | UserUpdateWithWhereUniqueWithoutPinned_tweetInput[] No
updateMany UserUpdateManyWithWhereWithoutPinned_tweetInput | UserUpdateManyWithWhereWithoutPinned_tweetInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

TweetCreateNestedOneWithoutMediaInput

Name Type Nullable
create TweetCreateWithoutMediaInput | TweetUncheckedCreateWithoutMediaInput No
connectOrCreate TweetCreateOrConnectWithoutMediaInput No
connect TweetWhereUniqueInput No

MessageCreateNestedOneWithoutMediaInput

Name Type Nullable
create MessageCreateWithoutMediaInput | MessageUncheckedCreateWithoutMediaInput No
connectOrCreate MessageCreateOrConnectWithoutMediaInput No
connect MessageWhereUniqueInput No



TweetCreateNestedOneWithoutLikesInput

Name Type Nullable
create TweetCreateWithoutLikesInput | TweetUncheckedCreateWithoutLikesInput No
connectOrCreate TweetCreateOrConnectWithoutLikesInput No
connect TweetWhereUniqueInput No

UserCreateNestedOneWithoutLikesInput

Name Type Nullable
create UserCreateWithoutLikesInput | UserUncheckedCreateWithoutLikesInput No
connectOrCreate UserCreateOrConnectWithoutLikesInput No
connect UserWhereUniqueInput No



UserCreateNestedOneWithoutReputationsInput

Name Type Nullable
create UserCreateWithoutReputationsInput | UserUncheckedCreateWithoutReputationsInput No
connectOrCreate UserCreateOrConnectWithoutReputationsInput No
connect UserWhereUniqueInput No


TweetCreateNestedOneWithoutVotesInput

Name Type Nullable
create TweetCreateWithoutVotesInput | TweetUncheckedCreateWithoutVotesInput No
connectOrCreate TweetCreateOrConnectWithoutVotesInput No
connect TweetWhereUniqueInput No

UserCreateNestedOneWithoutVotesInput

Name Type Nullable
create UserCreateWithoutVotesInput | UserUncheckedCreateWithoutVotesInput No
connectOrCreate UserCreateOrConnectWithoutVotesInput No
connect UserWhereUniqueInput No



TweetCreateNestedOneWithoutRetweetsInput

Name Type Nullable
create TweetCreateWithoutRetweetsInput | TweetUncheckedCreateWithoutRetweetsInput No
connectOrCreate TweetCreateOrConnectWithoutRetweetsInput No
connect TweetWhereUniqueInput No

UserCreateNestedOneWithoutRetweetsInput

Name Type Nullable
create UserCreateWithoutRetweetsInput | UserUncheckedCreateWithoutRetweetsInput No
connectOrCreate UserCreateOrConnectWithoutRetweetsInput No
connect UserWhereUniqueInput No



TweetCreateNestedOneWithoutBookmarksInput

Name Type Nullable
create TweetCreateWithoutBookmarksInput | TweetUncheckedCreateWithoutBookmarksInput No
connectOrCreate TweetCreateOrConnectWithoutBookmarksInput No
connect TweetWhereUniqueInput No

UserCreateNestedOneWithoutBookmarksInput

Name Type Nullable
create UserCreateWithoutBookmarksInput | UserUncheckedCreateWithoutBookmarksInput No
connectOrCreate UserCreateOrConnectWithoutBookmarksInput No
connect UserWhereUniqueInput No



UserCreateNestedOneWithoutReceived_messagesInput

Name Type Nullable
create UserCreateWithoutReceived_messagesInput | UserUncheckedCreateWithoutReceived_messagesInput No
connectOrCreate UserCreateOrConnectWithoutReceived_messagesInput No
connect UserWhereUniqueInput No

UserCreateNestedOneWithoutSent_messagesInput

Name Type Nullable
create UserCreateWithoutSent_messagesInput | UserUncheckedCreateWithoutSent_messagesInput No
connectOrCreate UserCreateOrConnectWithoutSent_messagesInput No
connect UserWhereUniqueInput No

ConversationCreateNestedOneWithoutMessagesInput

Name Type Nullable
create ConversationCreateWithoutMessagesInput | ConversationUncheckedCreateWithoutMessagesInput No
connectOrCreate ConversationCreateOrConnectWithoutMessagesInput No
connect ConversationWhereUniqueInput No






MediaUpdateManyWithoutMessageNestedInput

Name Type Nullable
create MediaCreateWithoutMessageInput | MediaCreateWithoutMessageInput[] | MediaUncheckedCreateWithoutMessageInput | MediaUncheckedCreateWithoutMessageInput[] No
connectOrCreate MediaCreateOrConnectWithoutMessageInput | MediaCreateOrConnectWithoutMessageInput[] No
upsert MediaUpsertWithWhereUniqueWithoutMessageInput | MediaUpsertWithWhereUniqueWithoutMessageInput[] No
createMany MediaCreateManyMessageInputEnvelope No
set MediaWhereUniqueInput | MediaWhereUniqueInput[] No
disconnect MediaWhereUniqueInput | MediaWhereUniqueInput[] No
delete MediaWhereUniqueInput | MediaWhereUniqueInput[] No
connect MediaWhereUniqueInput | MediaWhereUniqueInput[] No
update MediaUpdateWithWhereUniqueWithoutMessageInput | MediaUpdateWithWhereUniqueWithoutMessageInput[] No
updateMany MediaUpdateManyWithWhereWithoutMessageInput | MediaUpdateManyWithWhereWithoutMessageInput[] No
deleteMany MediaScalarWhereInput | MediaScalarWhereInput[] No

MediaUncheckedUpdateManyWithoutMessageNestedInput

Name Type Nullable
create MediaCreateWithoutMessageInput | MediaCreateWithoutMessageInput[] | MediaUncheckedCreateWithoutMessageInput | MediaUncheckedCreateWithoutMessageInput[] No
connectOrCreate MediaCreateOrConnectWithoutMessageInput | MediaCreateOrConnectWithoutMessageInput[] No
upsert MediaUpsertWithWhereUniqueWithoutMessageInput | MediaUpsertWithWhereUniqueWithoutMessageInput[] No
createMany MediaCreateManyMessageInputEnvelope No
set MediaWhereUniqueInput | MediaWhereUniqueInput[] No
disconnect MediaWhereUniqueInput | MediaWhereUniqueInput[] No
delete MediaWhereUniqueInput | MediaWhereUniqueInput[] No
connect MediaWhereUniqueInput | MediaWhereUniqueInput[] No
update MediaUpdateWithWhereUniqueWithoutMessageInput | MediaUpdateWithWhereUniqueWithoutMessageInput[] No
updateMany MediaUpdateManyWithWhereWithoutMessageInput | MediaUpdateManyWithWhereWithoutMessageInput[] No
deleteMany MediaScalarWhereInput | MediaScalarWhereInput[] No





UserUpdateManyWithoutConversationsNestedInput

Name Type Nullable
create UserCreateWithoutConversationsInput | UserCreateWithoutConversationsInput[] | UserUncheckedCreateWithoutConversationsInput | UserUncheckedCreateWithoutConversationsInput[] No
connectOrCreate UserCreateOrConnectWithoutConversationsInput | UserCreateOrConnectWithoutConversationsInput[] No
upsert UserUpsertWithWhereUniqueWithoutConversationsInput | UserUpsertWithWhereUniqueWithoutConversationsInput[] No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutConversationsInput | UserUpdateWithWhereUniqueWithoutConversationsInput[] No
updateMany UserUpdateManyWithWhereWithoutConversationsInput | UserUpdateManyWithWhereWithoutConversationsInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

MessageUpdateManyWithoutConversationNestedInput

Name Type Nullable
create MessageCreateWithoutConversationInput | MessageCreateWithoutConversationInput[] | MessageUncheckedCreateWithoutConversationInput | MessageUncheckedCreateWithoutConversationInput[] No
connectOrCreate MessageCreateOrConnectWithoutConversationInput | MessageCreateOrConnectWithoutConversationInput[] No
upsert MessageUpsertWithWhereUniqueWithoutConversationInput | MessageUpsertWithWhereUniqueWithoutConversationInput[] No
createMany MessageCreateManyConversationInputEnvelope No
set MessageWhereUniqueInput | MessageWhereUniqueInput[] No
disconnect MessageWhereUniqueInput | MessageWhereUniqueInput[] No
delete MessageWhereUniqueInput | MessageWhereUniqueInput[] No
connect MessageWhereUniqueInput | MessageWhereUniqueInput[] No
update MessageUpdateWithWhereUniqueWithoutConversationInput | MessageUpdateWithWhereUniqueWithoutConversationInput[] No
updateMany MessageUpdateManyWithWhereWithoutConversationInput | MessageUpdateManyWithWhereWithoutConversationInput[] No
deleteMany MessageScalarWhereInput | MessageScalarWhereInput[] No

UserUncheckedUpdateManyWithoutConversationsNestedInput

Name Type Nullable
create UserCreateWithoutConversationsInput | UserCreateWithoutConversationsInput[] | UserUncheckedCreateWithoutConversationsInput | UserUncheckedCreateWithoutConversationsInput[] No
connectOrCreate UserCreateOrConnectWithoutConversationsInput | UserCreateOrConnectWithoutConversationsInput[] No
upsert UserUpsertWithWhereUniqueWithoutConversationsInput | UserUpsertWithWhereUniqueWithoutConversationsInput[] No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutConversationsInput | UserUpdateWithWhereUniqueWithoutConversationsInput[] No
updateMany UserUpdateManyWithWhereWithoutConversationsInput | UserUpdateManyWithWhereWithoutConversationsInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

MessageUncheckedUpdateManyWithoutConversationNestedInput

Name Type Nullable
create MessageCreateWithoutConversationInput | MessageCreateWithoutConversationInput[] | MessageUncheckedCreateWithoutConversationInput | MessageUncheckedCreateWithoutConversationInput[] No
connectOrCreate MessageCreateOrConnectWithoutConversationInput | MessageCreateOrConnectWithoutConversationInput[] No
upsert MessageUpsertWithWhereUniqueWithoutConversationInput | MessageUpsertWithWhereUniqueWithoutConversationInput[] No
createMany MessageCreateManyConversationInputEnvelope No
set MessageWhereUniqueInput | MessageWhereUniqueInput[] No
disconnect MessageWhereUniqueInput | MessageWhereUniqueInput[] No
delete MessageWhereUniqueInput | MessageWhereUniqueInput[] No
connect MessageWhereUniqueInput | MessageWhereUniqueInput[] No
update MessageUpdateWithWhereUniqueWithoutConversationInput | MessageUpdateWithWhereUniqueWithoutConversationInput[] No
updateMany MessageUpdateManyWithWhereWithoutConversationInput | MessageUpdateManyWithWhereWithoutConversationInput[] No
deleteMany MessageScalarWhereInput | MessageScalarWhereInput[] No

UserCreateNestedOneWithoutCryptoLoginNonceInput

Name Type Nullable
create UserCreateWithoutCryptoLoginNonceInput | UserUncheckedCreateWithoutCryptoLoginNonceInput No
connectOrCreate UserCreateOrConnectWithoutCryptoLoginNonceInput No
connect UserWhereUniqueInput No


NestedStringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringFilter No

NestedDateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

NestedStringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedIntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedStringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableFilter | Null Yes

NestedIntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableFilter | Null Yes

NestedBoolFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolFilter No

NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes


NestedFloatFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatFilter No

NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No


NestedIntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedFloatWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedFloatFilter No
_min NestedFloatFilter No
_max NestedFloatFilter No

UserCreateWithoutAccountsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutAccountsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutAccountsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput No


UserUpdateToOneWithWhereWithoutAccountsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutAccountsInput | UserUncheckedUpdateWithoutAccountsInput No

UserUpdateWithoutAccountsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutAccountsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

UserCreateWithoutSessionsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutSessionsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutSessionsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput No


UserUpdateToOneWithWhereWithoutSessionsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutSessionsInput | UserUncheckedUpdateWithoutSessionsInput No

UserUpdateWithoutSessionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutSessionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

CryptoLoginNonceCreateWithoutUserInput

Name Type Nullable
nonce String No
expires DateTime No

CryptoLoginNonceUncheckedCreateWithoutUserInput

Name Type Nullable
nonce String No
expires DateTime No

CryptoLoginNonceCreateOrConnectWithoutUserInput

Name Type Nullable
where CryptoLoginNonceWhereUniqueInput No
create CryptoLoginNonceCreateWithoutUserInput | CryptoLoginNonceUncheckedCreateWithoutUserInput No

AccountCreateWithoutUserInput

Name Type Nullable
id String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
oath_token String | Null Yes
oauth_token_secret String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes

AccountUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
oath_token String | Null Yes
oauth_token_secret String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes

AccountCreateOrConnectWithoutUserInput

Name Type Nullable
where AccountWhereUniqueInput No
create AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput No

AccountCreateManyUserInputEnvelope

Name Type Nullable
data AccountCreateManyUserInput | AccountCreateManyUserInput[] No
skipDuplicates Boolean No

SessionCreateWithoutUserInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No

SessionUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No

SessionCreateOrConnectWithoutUserInput

Name Type Nullable
where SessionWhereUniqueInput No
create SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput No

SessionCreateManyUserInputEnvelope

Name Type Nullable
data SessionCreateManyUserInput | SessionCreateManyUserInput[] No
skipDuplicates Boolean No

TweetCreateWithoutAuthorInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
media MediaCreateNestedManyWithoutTweetInput No
likes LikeCreateNestedManyWithoutTweetInput No
votes VoteCreateNestedManyWithoutTweetInput No
retweets RetweetCreateNestedManyWithoutTweetInput No
quotes TweetCreateNestedManyWithoutQuoted_tweetInput No
quoted_tweet TweetCreateNestedOneWithoutQuotesInput No
comments TweetCreateNestedManyWithoutTweet_commentInput No
tweet_comment TweetCreateNestedOneWithoutCommentsInput No
bookmarks BookmarkCreateNestedManyWithoutTweetInput No
pinned_by_users UserCreateNestedManyWithoutPinned_tweetInput No

TweetUncheckedCreateWithoutAuthorInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
quoted_tweet_id String | Null Yes
in_reply_to_status_id String | Null Yes
media MediaUncheckedCreateNestedManyWithoutTweetInput No
likes LikeUncheckedCreateNestedManyWithoutTweetInput No
votes VoteUncheckedCreateNestedManyWithoutTweetInput No
retweets RetweetUncheckedCreateNestedManyWithoutTweetInput No
quotes TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput No
comments TweetUncheckedCreateNestedManyWithoutTweet_commentInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutTweetInput No
pinned_by_users UserUncheckedCreateNestedManyWithoutPinned_tweetInput No

TweetCreateOrConnectWithoutAuthorInput

Name Type Nullable
where TweetWhereUniqueInput No
create TweetCreateWithoutAuthorInput | TweetUncheckedCreateWithoutAuthorInput No

TweetCreateManyAuthorInputEnvelope

Name Type Nullable
data TweetCreateManyAuthorInput | TweetCreateManyAuthorInput[] No
skipDuplicates Boolean No

LikeCreateWithoutUserInput

Name Type Nullable
id String No
created_at DateTime No
tweet TweetCreateNestedOneWithoutLikesInput No

LikeUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
tweet_id String No
created_at DateTime No

LikeCreateOrConnectWithoutUserInput

Name Type Nullable
where LikeWhereUniqueInput No
create LikeCreateWithoutUserInput | LikeUncheckedCreateWithoutUserInput No

LikeCreateManyUserInputEnvelope

Name Type Nullable
data LikeCreateManyUserInput | LikeCreateManyUserInput[] No
skipDuplicates Boolean No

ReputationCreateWithoutUserInput

Name Type Nullable
id String No
session_owner_id String No
reputation_status String No
created_at DateTime No

ReputationUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
session_owner_id String No
reputation_status String No
created_at DateTime No

ReputationCreateOrConnectWithoutUserInput

Name Type Nullable
where ReputationWhereUniqueInput No
create ReputationCreateWithoutUserInput | ReputationUncheckedCreateWithoutUserInput No

ReputationCreateManyUserInputEnvelope

Name Type Nullable
data ReputationCreateManyUserInput | ReputationCreateManyUserInput[] No
skipDuplicates Boolean No

VoteCreateWithoutUserInput

Name Type Nullable
id String No
vote_status String No
created_at DateTime No
tweet TweetCreateNestedOneWithoutVotesInput No

VoteUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
tweet_id String No
vote_status String No
created_at DateTime No

VoteCreateOrConnectWithoutUserInput

Name Type Nullable
where VoteWhereUniqueInput No
create VoteCreateWithoutUserInput | VoteUncheckedCreateWithoutUserInput No

VoteCreateManyUserInputEnvelope

Name Type Nullable
data VoteCreateManyUserInput | VoteCreateManyUserInput[] No
skipDuplicates Boolean No

FollowerCreateWithoutFollowerInput

Name Type Nullable
id String No
created_at DateTime No
followed UserCreateNestedOneWithoutFollowingInput No

FollowerUncheckedCreateWithoutFollowerInput

Name Type Nullable
id String No
followed_id String No
created_at DateTime No

FollowerCreateOrConnectWithoutFollowerInput

Name Type Nullable
where FollowerWhereUniqueInput No
create FollowerCreateWithoutFollowerInput | FollowerUncheckedCreateWithoutFollowerInput No

FollowerCreateManyFollowerInputEnvelope

Name Type Nullable
data FollowerCreateManyFollowerInput | FollowerCreateManyFollowerInput[] No
skipDuplicates Boolean No

FollowerCreateWithoutFollowedInput

Name Type Nullable
id String No
created_at DateTime No
follower UserCreateNestedOneWithoutFollowersInput No

FollowerUncheckedCreateWithoutFollowedInput

Name Type Nullable
id String No
follower_id String No
created_at DateTime No

FollowerCreateOrConnectWithoutFollowedInput

Name Type Nullable
where FollowerWhereUniqueInput No
create FollowerCreateWithoutFollowedInput | FollowerUncheckedCreateWithoutFollowedInput No

FollowerCreateManyFollowedInputEnvelope

Name Type Nullable
data FollowerCreateManyFollowedInput | FollowerCreateManyFollowedInput[] No
skipDuplicates Boolean No

TransactionCreateWithoutUserInput

Name Type Nullable
id String No
user_id String No
balance Float No
amount Float No
description String No
created_at DateTime No

TransactionUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
user_id String No
balance Float No
amount Float No
description String No
created_at DateTime No

TransactionCreateOrConnectWithoutUserInput

Name Type Nullable
where TransactionWhereUniqueInput No
create TransactionCreateWithoutUserInput | TransactionUncheckedCreateWithoutUserInput No

TransactionCreateManyUserInputEnvelope

Name Type Nullable
data TransactionCreateManyUserInput | TransactionCreateManyUserInput[] No
skipDuplicates Boolean No

RetweetCreateWithoutUserInput

Name Type Nullable
id String No
created_at DateTime No
tweet TweetCreateNestedOneWithoutRetweetsInput No

RetweetUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
tweet_id String No
created_at DateTime No

RetweetCreateOrConnectWithoutUserInput

Name Type Nullable
where RetweetWhereUniqueInput No
create RetweetCreateWithoutUserInput | RetweetUncheckedCreateWithoutUserInput No

RetweetCreateManyUserInputEnvelope

Name Type Nullable
data RetweetCreateManyUserInput | RetweetCreateManyUserInput[] No
skipDuplicates Boolean No

BookmarkCreateWithoutUserInput

Name Type Nullable
id String No
created_at DateTime No
tweet TweetCreateNestedOneWithoutBookmarksInput No

BookmarkUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
tweet_id String No
created_at DateTime No

BookmarkCreateOrConnectWithoutUserInput

Name Type Nullable
where BookmarkWhereUniqueInput No
create BookmarkCreateWithoutUserInput | BookmarkUncheckedCreateWithoutUserInput No

BookmarkCreateManyUserInputEnvelope

Name Type Nullable
data BookmarkCreateManyUserInput | BookmarkCreateManyUserInput[] No
skipDuplicates Boolean No

MessageCreateWithoutReceiverInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
sender UserCreateNestedOneWithoutReceived_messagesInput No
conversation ConversationCreateNestedOneWithoutMessagesInput No
media MediaCreateNestedManyWithoutMessageInput No

MessageUncheckedCreateWithoutReceiverInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
sender_id String No
conversation_id String No
media MediaUncheckedCreateNestedManyWithoutMessageInput No

MessageCreateOrConnectWithoutReceiverInput

Name Type Nullable
where MessageWhereUniqueInput No
create MessageCreateWithoutReceiverInput | MessageUncheckedCreateWithoutReceiverInput No

MessageCreateManyReceiverInputEnvelope

Name Type Nullable
data MessageCreateManyReceiverInput | MessageCreateManyReceiverInput[] No
skipDuplicates Boolean No

MessageCreateWithoutSenderInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
receiver UserCreateNestedOneWithoutSent_messagesInput No
conversation ConversationCreateNestedOneWithoutMessagesInput No
media MediaCreateNestedManyWithoutMessageInput No

MessageUncheckedCreateWithoutSenderInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
receiver_id String No
conversation_id String No
media MediaUncheckedCreateNestedManyWithoutMessageInput No

MessageCreateOrConnectWithoutSenderInput

Name Type Nullable
where MessageWhereUniqueInput No
create MessageCreateWithoutSenderInput | MessageUncheckedCreateWithoutSenderInput No

MessageCreateManySenderInputEnvelope

Name Type Nullable
data MessageCreateManySenderInput | MessageCreateManySenderInput[] No
skipDuplicates Boolean No

ConversationCreateWithoutUsersInput

Name Type Nullable
id String No
created_at DateTime No
messages MessageCreateNestedManyWithoutConversationInput No

ConversationUncheckedCreateWithoutUsersInput

Name Type Nullable
id String No
created_at DateTime No
messages MessageUncheckedCreateNestedManyWithoutConversationInput No

ConversationCreateOrConnectWithoutUsersInput

Name Type Nullable
where ConversationWhereUniqueInput No
create ConversationCreateWithoutUsersInput | ConversationUncheckedCreateWithoutUsersInput No

TweetCreateWithoutPinned_by_usersInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author UserCreateNestedOneWithoutTweetsInput No
media MediaCreateNestedManyWithoutTweetInput No
likes LikeCreateNestedManyWithoutTweetInput No
votes VoteCreateNestedManyWithoutTweetInput No
retweets RetweetCreateNestedManyWithoutTweetInput No
quotes TweetCreateNestedManyWithoutQuoted_tweetInput No
quoted_tweet TweetCreateNestedOneWithoutQuotesInput No
comments TweetCreateNestedManyWithoutTweet_commentInput No
tweet_comment TweetCreateNestedOneWithoutCommentsInput No
bookmarks BookmarkCreateNestedManyWithoutTweetInput No

TweetUncheckedCreateWithoutPinned_by_usersInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String | Null Yes
in_reply_to_status_id String | Null Yes
media MediaUncheckedCreateNestedManyWithoutTweetInput No
likes LikeUncheckedCreateNestedManyWithoutTweetInput No
votes VoteUncheckedCreateNestedManyWithoutTweetInput No
retweets RetweetUncheckedCreateNestedManyWithoutTweetInput No
quotes TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput No
comments TweetUncheckedCreateNestedManyWithoutTweet_commentInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutTweetInput No

TweetCreateOrConnectWithoutPinned_by_usersInput

Name Type Nullable
where TweetWhereUniqueInput No
create TweetCreateWithoutPinned_by_usersInput | TweetUncheckedCreateWithoutPinned_by_usersInput No


CryptoLoginNonceUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where CryptoLoginNonceWhereInput No
data CryptoLoginNonceUpdateWithoutUserInput | CryptoLoginNonceUncheckedUpdateWithoutUserInput No

CryptoLoginNonceUpdateWithoutUserInput

Name Type Nullable
nonce String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

CryptoLoginNonceUncheckedUpdateWithoutUserInput

Name Type Nullable
nonce String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No


AccountUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where AccountWhereUniqueInput No
data AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput No

AccountUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where AccountScalarWhereInput No
data AccountUpdateManyMutationInput | AccountUncheckedUpdateManyWithoutUserInput No

AccountScalarWhereInput

Name Type Nullable
AND AccountScalarWhereInput | AccountScalarWhereInput[] No
OR AccountScalarWhereInput[] No
NOT AccountScalarWhereInput | AccountScalarWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
type StringFilter | String No
provider StringFilter | String No
providerAccountId StringFilter | String No
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
oath_token StringNullableFilter | String | Null Yes
oauth_token_secret StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
token_type StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
id_token StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes


SessionUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where SessionWhereUniqueInput No
data SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput No

SessionUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where SessionScalarWhereInput No
data SessionUpdateManyMutationInput | SessionUncheckedUpdateManyWithoutUserInput No

SessionScalarWhereInput

Name Type Nullable
AND SessionScalarWhereInput | SessionScalarWhereInput[] No
OR SessionScalarWhereInput[] No
NOT SessionScalarWhereInput | SessionScalarWhereInput[] No
id StringFilter | String No
sessionToken StringFilter | String No
expires DateTimeFilter | DateTime No
userId StringFilter | String No


TweetUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where TweetWhereUniqueInput No
data TweetUpdateWithoutAuthorInput | TweetUncheckedUpdateWithoutAuthorInput No

TweetUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where TweetScalarWhereInput No
data TweetUpdateManyMutationInput | TweetUncheckedUpdateManyWithoutAuthorInput No

TweetScalarWhereInput

Name Type Nullable
AND TweetScalarWhereInput | TweetScalarWhereInput[] No
OR TweetScalarWhereInput[] No
NOT TweetScalarWhereInput | TweetScalarWhereInput[] No
id StringFilter | String No
text StringNullableFilter | String | Null Yes
source StringFilter | String No
in_reply_to_user_id StringNullableFilter | String | Null Yes
in_reply_to_screen_name StringNullableFilter | String | Null Yes
is_quote_status BoolFilter | Boolean No
quoted_status_id StringNullableFilter | String | Null Yes
quote_count IntFilter | Int No
reply_count IntFilter | Int No
retweet_count IntFilter | Int No
favorite_count IntFilter | Int No
vote_count IntFilter | Int No
possibly_sensitive BoolFilter | Boolean No
lang StringFilter | String No
created_at DateTimeFilter | DateTime No
author_id StringFilter | String No
quoted_tweet_id StringNullableFilter | String | Null Yes
in_reply_to_status_id StringNullableFilter | String | Null Yes

LikeUpsertWithWhereUniqueWithoutUserInput

Name Type Nullable
where LikeWhereUniqueInput No
update LikeUpdateWithoutUserInput | LikeUncheckedUpdateWithoutUserInput No
create LikeCreateWithoutUserInput | LikeUncheckedCreateWithoutUserInput No

LikeUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where LikeWhereUniqueInput No
data LikeUpdateWithoutUserInput | LikeUncheckedUpdateWithoutUserInput No

LikeUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where LikeScalarWhereInput No
data LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutUserInput No

LikeScalarWhereInput

Name Type Nullable
AND LikeScalarWhereInput | LikeScalarWhereInput[] No
OR LikeScalarWhereInput[] No
NOT LikeScalarWhereInput | LikeScalarWhereInput[] No
id StringFilter | String No
tweet_id StringFilter | String No
user_id StringFilter | String No
created_at DateTimeFilter | DateTime No


ReputationUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where ReputationWhereUniqueInput No
data ReputationUpdateWithoutUserInput | ReputationUncheckedUpdateWithoutUserInput No

ReputationUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where ReputationScalarWhereInput No
data ReputationUpdateManyMutationInput | ReputationUncheckedUpdateManyWithoutUserInput No

ReputationScalarWhereInput

Name Type Nullable
AND ReputationScalarWhereInput | ReputationScalarWhereInput[] No
OR ReputationScalarWhereInput[] No
NOT ReputationScalarWhereInput | ReputationScalarWhereInput[] No
id StringFilter | String No
user_id StringFilter | String No
session_owner_id StringFilter | String No
reputation_status StringFilter | String No
created_at DateTimeFilter | DateTime No

VoteUpsertWithWhereUniqueWithoutUserInput

Name Type Nullable
where VoteWhereUniqueInput No
update VoteUpdateWithoutUserInput | VoteUncheckedUpdateWithoutUserInput No
create VoteCreateWithoutUserInput | VoteUncheckedCreateWithoutUserInput No

VoteUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where VoteWhereUniqueInput No
data VoteUpdateWithoutUserInput | VoteUncheckedUpdateWithoutUserInput No

VoteUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where VoteScalarWhereInput No
data VoteUpdateManyMutationInput | VoteUncheckedUpdateManyWithoutUserInput No

VoteScalarWhereInput

Name Type Nullable
AND VoteScalarWhereInput | VoteScalarWhereInput[] No
OR VoteScalarWhereInput[] No
NOT VoteScalarWhereInput | VoteScalarWhereInput[] No
id StringFilter | String No
tweet_id StringFilter | String No
user_id StringFilter | String No
vote_status StringFilter | String No
created_at DateTimeFilter | DateTime No


FollowerUpdateWithWhereUniqueWithoutFollowerInput

Name Type Nullable
where FollowerWhereUniqueInput No
data FollowerUpdateWithoutFollowerInput | FollowerUncheckedUpdateWithoutFollowerInput No

FollowerUpdateManyWithWhereWithoutFollowerInput

Name Type Nullable
where FollowerScalarWhereInput No
data FollowerUpdateManyMutationInput | FollowerUncheckedUpdateManyWithoutFollowerInput No

FollowerScalarWhereInput

Name Type Nullable
AND FollowerScalarWhereInput | FollowerScalarWhereInput[] No
OR FollowerScalarWhereInput[] No
NOT FollowerScalarWhereInput | FollowerScalarWhereInput[] No
id StringFilter | String No
follower_id StringFilter | String No
followed_id StringFilter | String No
created_at DateTimeFilter | DateTime No


FollowerUpdateWithWhereUniqueWithoutFollowedInput

Name Type Nullable
where FollowerWhereUniqueInput No
data FollowerUpdateWithoutFollowedInput | FollowerUncheckedUpdateWithoutFollowedInput No

FollowerUpdateManyWithWhereWithoutFollowedInput

Name Type Nullable
where FollowerScalarWhereInput No
data FollowerUpdateManyMutationInput | FollowerUncheckedUpdateManyWithoutFollowedInput No


TransactionUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where TransactionWhereUniqueInput No
data TransactionUpdateWithoutUserInput | TransactionUncheckedUpdateWithoutUserInput No

TransactionUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where TransactionScalarWhereInput No
data TransactionUpdateManyMutationInput | TransactionUncheckedUpdateManyWithoutUserInput No

TransactionScalarWhereInput

Name Type Nullable
AND TransactionScalarWhereInput | TransactionScalarWhereInput[] No
OR TransactionScalarWhereInput[] No
NOT TransactionScalarWhereInput | TransactionScalarWhereInput[] No
id StringFilter | String No
user_id StringFilter | String No
follower_id StringFilter | String No
balance FloatFilter | Float No
amount FloatFilter | Float No
description StringFilter | String No
created_at DateTimeFilter | DateTime No


RetweetUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where RetweetWhereUniqueInput No
data RetweetUpdateWithoutUserInput | RetweetUncheckedUpdateWithoutUserInput No

RetweetUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where RetweetScalarWhereInput No
data RetweetUpdateManyMutationInput | RetweetUncheckedUpdateManyWithoutUserInput No

RetweetScalarWhereInput

Name Type Nullable
AND RetweetScalarWhereInput | RetweetScalarWhereInput[] No
OR RetweetScalarWhereInput[] No
NOT RetweetScalarWhereInput | RetweetScalarWhereInput[] No
id StringFilter | String No
tweet_id StringFilter | String No
user_id StringFilter | String No
created_at DateTimeFilter | DateTime No


BookmarkUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where BookmarkWhereUniqueInput No
data BookmarkUpdateWithoutUserInput | BookmarkUncheckedUpdateWithoutUserInput No

BookmarkUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where BookmarkScalarWhereInput No
data BookmarkUpdateManyMutationInput | BookmarkUncheckedUpdateManyWithoutUserInput No

BookmarkScalarWhereInput

Name Type Nullable
AND BookmarkScalarWhereInput | BookmarkScalarWhereInput[] No
OR BookmarkScalarWhereInput[] No
NOT BookmarkScalarWhereInput | BookmarkScalarWhereInput[] No
id StringFilter | String No
tweet_id StringFilter | String No
user_id StringFilter | String No
created_at DateTimeFilter | DateTime No


MessageUpdateWithWhereUniqueWithoutReceiverInput

Name Type Nullable
where MessageWhereUniqueInput No
data MessageUpdateWithoutReceiverInput | MessageUncheckedUpdateWithoutReceiverInput No

MessageUpdateManyWithWhereWithoutReceiverInput

Name Type Nullable
where MessageScalarWhereInput No
data MessageUpdateManyMutationInput | MessageUncheckedUpdateManyWithoutReceiverInput No

MessageScalarWhereInput

Name Type Nullable
AND MessageScalarWhereInput | MessageScalarWhereInput[] No
OR MessageScalarWhereInput[] No
NOT MessageScalarWhereInput | MessageScalarWhereInput[] No
id StringFilter | String No
text StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
created_at DateTimeFilter | DateTime No
sender_id StringFilter | String No
receiver_id StringFilter | String No
conversation_id StringFilter | String No


MessageUpdateWithWhereUniqueWithoutSenderInput

Name Type Nullable
where MessageWhereUniqueInput No
data MessageUpdateWithoutSenderInput | MessageUncheckedUpdateWithoutSenderInput No

MessageUpdateManyWithWhereWithoutSenderInput

Name Type Nullable
where MessageScalarWhereInput No
data MessageUpdateManyMutationInput | MessageUncheckedUpdateManyWithoutSenderInput No


ConversationUpdateWithWhereUniqueWithoutUsersInput

Name Type Nullable
where ConversationWhereUniqueInput No
data ConversationUpdateWithoutUsersInput | ConversationUncheckedUpdateWithoutUsersInput No

ConversationUpdateManyWithWhereWithoutUsersInput

Name Type Nullable
where ConversationScalarWhereInput No
data ConversationUpdateManyMutationInput | ConversationUncheckedUpdateManyWithoutUsersInput No

ConversationScalarWhereInput

Name Type Nullable
AND ConversationScalarWhereInput | ConversationScalarWhereInput[] No
OR ConversationScalarWhereInput[] No
NOT ConversationScalarWhereInput | ConversationScalarWhereInput[] No
id StringFilter | String No
created_at DateTimeFilter | DateTime No


TweetUpdateToOneWithWhereWithoutPinned_by_usersInput

Name Type Nullable
where TweetWhereInput No
data TweetUpdateWithoutPinned_by_usersInput | TweetUncheckedUpdateWithoutPinned_by_usersInput No

TweetUpdateWithoutPinned_by_usersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutTweetsNestedInput No
media MediaUpdateManyWithoutTweetNestedInput No
likes LikeUpdateManyWithoutTweetNestedInput No
votes VoteUpdateManyWithoutTweetNestedInput No
retweets RetweetUpdateManyWithoutTweetNestedInput No
quotes TweetUpdateManyWithoutQuoted_tweetNestedInput No
quoted_tweet TweetUpdateOneWithoutQuotesNestedInput No
comments TweetUpdateManyWithoutTweet_commentNestedInput No
tweet_comment TweetUpdateOneWithoutCommentsNestedInput No
bookmarks BookmarkUpdateManyWithoutTweetNestedInput No

TweetUncheckedUpdateWithoutPinned_by_usersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
media MediaUncheckedUpdateManyWithoutTweetNestedInput No
likes LikeUncheckedUpdateManyWithoutTweetNestedInput No
votes VoteUncheckedUpdateManyWithoutTweetNestedInput No
retweets RetweetUncheckedUpdateManyWithoutTweetNestedInput No
quotes TweetUncheckedUpdateManyWithoutQuoted_tweetNestedInput No
comments TweetUncheckedUpdateManyWithoutTweet_commentNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutTweetNestedInput No

UserCreateWithoutFollowersInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutFollowersInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutFollowersInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFollowersInput | UserUncheckedCreateWithoutFollowersInput No

UserCreateWithoutFollowingInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutFollowingInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutFollowingInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput No


UserUpdateToOneWithWhereWithoutFollowersInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutFollowersInput | UserUncheckedUpdateWithoutFollowersInput No

UserUpdateWithoutFollowersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutFollowersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No


UserUpdateToOneWithWhereWithoutFollowingInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutFollowingInput | UserUncheckedUpdateWithoutFollowingInput No

UserUpdateWithoutFollowingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutFollowingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

UserCreateWithoutTransactionsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutTransactionsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutTransactionsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutTransactionsInput | UserUncheckedCreateWithoutTransactionsInput No


UserUpdateToOneWithWhereWithoutTransactionsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutTransactionsInput | UserUncheckedUpdateWithoutTransactionsInput No

UserUpdateWithoutTransactionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutTransactionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

UserCreateWithoutTweetsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutTweetsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutTweetsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutTweetsInput | UserUncheckedCreateWithoutTweetsInput No

MediaCreateWithoutTweetInput

Name Type Nullable
id String No
media_url String No
media_type String No
media_path String No
Message MessageCreateNestedOneWithoutMediaInput No

MediaUncheckedCreateWithoutTweetInput

Name Type Nullable
id String No
media_url String No
media_type String No
media_path String No
message_id String | Null Yes

MediaCreateOrConnectWithoutTweetInput

Name Type Nullable
where MediaWhereUniqueInput No
create MediaCreateWithoutTweetInput | MediaUncheckedCreateWithoutTweetInput No

MediaCreateManyTweetInputEnvelope

Name Type Nullable
data MediaCreateManyTweetInput | MediaCreateManyTweetInput[] No
skipDuplicates Boolean No

LikeCreateWithoutTweetInput

Name Type Nullable
id String No
created_at DateTime No
user UserCreateNestedOneWithoutLikesInput No

LikeUncheckedCreateWithoutTweetInput

Name Type Nullable
id String No
user_id String No
created_at DateTime No

LikeCreateOrConnectWithoutTweetInput

Name Type Nullable
where LikeWhereUniqueInput No
create LikeCreateWithoutTweetInput | LikeUncheckedCreateWithoutTweetInput No

LikeCreateManyTweetInputEnvelope

Name Type Nullable
data LikeCreateManyTweetInput | LikeCreateManyTweetInput[] No
skipDuplicates Boolean No

VoteCreateWithoutTweetInput

Name Type Nullable
id String No
vote_status String No
created_at DateTime No
user UserCreateNestedOneWithoutVotesInput No

VoteUncheckedCreateWithoutTweetInput

Name Type Nullable
id String No
user_id String No
vote_status String No
created_at DateTime No

VoteCreateOrConnectWithoutTweetInput

Name Type Nullable
where VoteWhereUniqueInput No
create VoteCreateWithoutTweetInput | VoteUncheckedCreateWithoutTweetInput No

VoteCreateManyTweetInputEnvelope

Name Type Nullable
data VoteCreateManyTweetInput | VoteCreateManyTweetInput[] No
skipDuplicates Boolean No

RetweetCreateWithoutTweetInput

Name Type Nullable
id String No
created_at DateTime No
user UserCreateNestedOneWithoutRetweetsInput No

RetweetUncheckedCreateWithoutTweetInput

Name Type Nullable
id String No
user_id String No
created_at DateTime No

RetweetCreateOrConnectWithoutTweetInput

Name Type Nullable
where RetweetWhereUniqueInput No
create RetweetCreateWithoutTweetInput | RetweetUncheckedCreateWithoutTweetInput No

RetweetCreateManyTweetInputEnvelope

Name Type Nullable
data RetweetCreateManyTweetInput | RetweetCreateManyTweetInput[] No
skipDuplicates Boolean No

TweetCreateWithoutQuoted_tweetInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author UserCreateNestedOneWithoutTweetsInput No
media MediaCreateNestedManyWithoutTweetInput No
likes LikeCreateNestedManyWithoutTweetInput No
votes VoteCreateNestedManyWithoutTweetInput No
retweets RetweetCreateNestedManyWithoutTweetInput No
quotes TweetCreateNestedManyWithoutQuoted_tweetInput No
comments TweetCreateNestedManyWithoutTweet_commentInput No
tweet_comment TweetCreateNestedOneWithoutCommentsInput No
bookmarks BookmarkCreateNestedManyWithoutTweetInput No
pinned_by_users UserCreateNestedManyWithoutPinned_tweetInput No

TweetUncheckedCreateWithoutQuoted_tweetInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
in_reply_to_status_id String | Null Yes
media MediaUncheckedCreateNestedManyWithoutTweetInput No
likes LikeUncheckedCreateNestedManyWithoutTweetInput No
votes VoteUncheckedCreateNestedManyWithoutTweetInput No
retweets RetweetUncheckedCreateNestedManyWithoutTweetInput No
quotes TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput No
comments TweetUncheckedCreateNestedManyWithoutTweet_commentInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutTweetInput No
pinned_by_users UserUncheckedCreateNestedManyWithoutPinned_tweetInput No

TweetCreateOrConnectWithoutQuoted_tweetInput

Name Type Nullable
where TweetWhereUniqueInput No
create TweetCreateWithoutQuoted_tweetInput | TweetUncheckedCreateWithoutQuoted_tweetInput No

TweetCreateManyQuoted_tweetInputEnvelope

Name Type Nullable
data TweetCreateManyQuoted_tweetInput | TweetCreateManyQuoted_tweetInput[] No
skipDuplicates Boolean No

TweetCreateWithoutQuotesInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author UserCreateNestedOneWithoutTweetsInput No
media MediaCreateNestedManyWithoutTweetInput No
likes LikeCreateNestedManyWithoutTweetInput No
votes VoteCreateNestedManyWithoutTweetInput No
retweets RetweetCreateNestedManyWithoutTweetInput No
quoted_tweet TweetCreateNestedOneWithoutQuotesInput No
comments TweetCreateNestedManyWithoutTweet_commentInput No
tweet_comment TweetCreateNestedOneWithoutCommentsInput No
bookmarks BookmarkCreateNestedManyWithoutTweetInput No
pinned_by_users UserCreateNestedManyWithoutPinned_tweetInput No

TweetUncheckedCreateWithoutQuotesInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String | Null Yes
in_reply_to_status_id String | Null Yes
media MediaUncheckedCreateNestedManyWithoutTweetInput No
likes LikeUncheckedCreateNestedManyWithoutTweetInput No
votes VoteUncheckedCreateNestedManyWithoutTweetInput No
retweets RetweetUncheckedCreateNestedManyWithoutTweetInput No
comments TweetUncheckedCreateNestedManyWithoutTweet_commentInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutTweetInput No
pinned_by_users UserUncheckedCreateNestedManyWithoutPinned_tweetInput No

TweetCreateOrConnectWithoutQuotesInput

Name Type Nullable
where TweetWhereUniqueInput No
create TweetCreateWithoutQuotesInput | TweetUncheckedCreateWithoutQuotesInput No

TweetCreateWithoutTweet_commentInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author UserCreateNestedOneWithoutTweetsInput No
media MediaCreateNestedManyWithoutTweetInput No
likes LikeCreateNestedManyWithoutTweetInput No
votes VoteCreateNestedManyWithoutTweetInput No
retweets RetweetCreateNestedManyWithoutTweetInput No
quotes TweetCreateNestedManyWithoutQuoted_tweetInput No
quoted_tweet TweetCreateNestedOneWithoutQuotesInput No
comments TweetCreateNestedManyWithoutTweet_commentInput No
bookmarks BookmarkCreateNestedManyWithoutTweetInput No
pinned_by_users UserCreateNestedManyWithoutPinned_tweetInput No

TweetUncheckedCreateWithoutTweet_commentInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String | Null Yes
media MediaUncheckedCreateNestedManyWithoutTweetInput No
likes LikeUncheckedCreateNestedManyWithoutTweetInput No
votes VoteUncheckedCreateNestedManyWithoutTweetInput No
retweets RetweetUncheckedCreateNestedManyWithoutTweetInput No
quotes TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput No
comments TweetUncheckedCreateNestedManyWithoutTweet_commentInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutTweetInput No
pinned_by_users UserUncheckedCreateNestedManyWithoutPinned_tweetInput No

TweetCreateOrConnectWithoutTweet_commentInput

Name Type Nullable
where TweetWhereUniqueInput No
create TweetCreateWithoutTweet_commentInput | TweetUncheckedCreateWithoutTweet_commentInput No

TweetCreateManyTweet_commentInputEnvelope

Name Type Nullable
data TweetCreateManyTweet_commentInput | TweetCreateManyTweet_commentInput[] No
skipDuplicates Boolean No

TweetCreateWithoutCommentsInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author UserCreateNestedOneWithoutTweetsInput No
media MediaCreateNestedManyWithoutTweetInput No
likes LikeCreateNestedManyWithoutTweetInput No
votes VoteCreateNestedManyWithoutTweetInput No
retweets RetweetCreateNestedManyWithoutTweetInput No
quotes TweetCreateNestedManyWithoutQuoted_tweetInput No
quoted_tweet TweetCreateNestedOneWithoutQuotesInput No
tweet_comment TweetCreateNestedOneWithoutCommentsInput No
bookmarks BookmarkCreateNestedManyWithoutTweetInput No
pinned_by_users UserCreateNestedManyWithoutPinned_tweetInput No

TweetUncheckedCreateWithoutCommentsInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String | Null Yes
in_reply_to_status_id String | Null Yes
media MediaUncheckedCreateNestedManyWithoutTweetInput No
likes LikeUncheckedCreateNestedManyWithoutTweetInput No
votes VoteUncheckedCreateNestedManyWithoutTweetInput No
retweets RetweetUncheckedCreateNestedManyWithoutTweetInput No
quotes TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutTweetInput No
pinned_by_users UserUncheckedCreateNestedManyWithoutPinned_tweetInput No

TweetCreateOrConnectWithoutCommentsInput

Name Type Nullable
where TweetWhereUniqueInput No
create TweetCreateWithoutCommentsInput | TweetUncheckedCreateWithoutCommentsInput No

BookmarkCreateWithoutTweetInput

Name Type Nullable
id String No
created_at DateTime No
user UserCreateNestedOneWithoutBookmarksInput No

BookmarkUncheckedCreateWithoutTweetInput

Name Type Nullable
id String No
user_id String No
created_at DateTime No

BookmarkCreateOrConnectWithoutTweetInput

Name Type Nullable
where BookmarkWhereUniqueInput No
create BookmarkCreateWithoutTweetInput | BookmarkUncheckedCreateWithoutTweetInput No

BookmarkCreateManyTweetInputEnvelope

Name Type Nullable
data BookmarkCreateManyTweetInput | BookmarkCreateManyTweetInput[] No
skipDuplicates Boolean No

UserCreateWithoutPinned_tweetInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No

UserUncheckedCreateWithoutPinned_tweetInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutPinned_tweetInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutPinned_tweetInput | UserUncheckedCreateWithoutPinned_tweetInput No

UserCreateManyPinned_tweetInputEnvelope

Name Type Nullable
data UserCreateManyPinned_tweetInput | UserCreateManyPinned_tweetInput[] No
skipDuplicates Boolean No


UserUpdateToOneWithWhereWithoutTweetsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutTweetsInput | UserUncheckedUpdateWithoutTweetsInput No

UserUpdateWithoutTweetsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutTweetsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

MediaUpsertWithWhereUniqueWithoutTweetInput

Name Type Nullable
where MediaWhereUniqueInput No
update MediaUpdateWithoutTweetInput | MediaUncheckedUpdateWithoutTweetInput No
create MediaCreateWithoutTweetInput | MediaUncheckedCreateWithoutTweetInput No

MediaUpdateWithWhereUniqueWithoutTweetInput

Name Type Nullable
where MediaWhereUniqueInput No
data MediaUpdateWithoutTweetInput | MediaUncheckedUpdateWithoutTweetInput No

MediaUpdateManyWithWhereWithoutTweetInput

Name Type Nullable
where MediaScalarWhereInput No
data MediaUpdateManyMutationInput | MediaUncheckedUpdateManyWithoutTweetInput No

MediaScalarWhereInput

Name Type Nullable
AND MediaScalarWhereInput | MediaScalarWhereInput[] No
OR MediaScalarWhereInput[] No
NOT MediaScalarWhereInput | MediaScalarWhereInput[] No
id StringFilter | String No
media_url StringFilter | String No
media_type StringFilter | String No
media_path StringFilter | String No
tweet_id StringNullableFilter | String | Null Yes
message_id StringNullableFilter | String | Null Yes

LikeUpsertWithWhereUniqueWithoutTweetInput

Name Type Nullable
where LikeWhereUniqueInput No
update LikeUpdateWithoutTweetInput | LikeUncheckedUpdateWithoutTweetInput No
create LikeCreateWithoutTweetInput | LikeUncheckedCreateWithoutTweetInput No

LikeUpdateWithWhereUniqueWithoutTweetInput

Name Type Nullable
where LikeWhereUniqueInput No
data LikeUpdateWithoutTweetInput | LikeUncheckedUpdateWithoutTweetInput No

LikeUpdateManyWithWhereWithoutTweetInput

Name Type Nullable
where LikeScalarWhereInput No
data LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutTweetInput No

VoteUpsertWithWhereUniqueWithoutTweetInput

Name Type Nullable
where VoteWhereUniqueInput No
update VoteUpdateWithoutTweetInput | VoteUncheckedUpdateWithoutTweetInput No
create VoteCreateWithoutTweetInput | VoteUncheckedCreateWithoutTweetInput No

VoteUpdateWithWhereUniqueWithoutTweetInput

Name Type Nullable
where VoteWhereUniqueInput No
data VoteUpdateWithoutTweetInput | VoteUncheckedUpdateWithoutTweetInput No

VoteUpdateManyWithWhereWithoutTweetInput

Name Type Nullable
where VoteScalarWhereInput No
data VoteUpdateManyMutationInput | VoteUncheckedUpdateManyWithoutTweetInput No


RetweetUpdateWithWhereUniqueWithoutTweetInput

Name Type Nullable
where RetweetWhereUniqueInput No
data RetweetUpdateWithoutTweetInput | RetweetUncheckedUpdateWithoutTweetInput No

RetweetUpdateManyWithWhereWithoutTweetInput

Name Type Nullable
where RetweetScalarWhereInput No
data RetweetUpdateManyMutationInput | RetweetUncheckedUpdateManyWithoutTweetInput No


TweetUpdateWithWhereUniqueWithoutQuoted_tweetInput

Name Type Nullable
where TweetWhereUniqueInput No
data TweetUpdateWithoutQuoted_tweetInput | TweetUncheckedUpdateWithoutQuoted_tweetInput No

TweetUpdateManyWithWhereWithoutQuoted_tweetInput

Name Type Nullable
where TweetScalarWhereInput No
data TweetUpdateManyMutationInput | TweetUncheckedUpdateManyWithoutQuoted_tweetInput No


TweetUpdateToOneWithWhereWithoutQuotesInput

Name Type Nullable
where TweetWhereInput No
data TweetUpdateWithoutQuotesInput | TweetUncheckedUpdateWithoutQuotesInput No

TweetUpdateWithoutQuotesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutTweetsNestedInput No
media MediaUpdateManyWithoutTweetNestedInput No
likes LikeUpdateManyWithoutTweetNestedInput No
votes VoteUpdateManyWithoutTweetNestedInput No
retweets RetweetUpdateManyWithoutTweetNestedInput No
quoted_tweet TweetUpdateOneWithoutQuotesNestedInput No
comments TweetUpdateManyWithoutTweet_commentNestedInput No
tweet_comment TweetUpdateOneWithoutCommentsNestedInput No
bookmarks BookmarkUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateWithoutQuotesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
media MediaUncheckedUpdateManyWithoutTweetNestedInput No
likes LikeUncheckedUpdateManyWithoutTweetNestedInput No
votes VoteUncheckedUpdateManyWithoutTweetNestedInput No
retweets RetweetUncheckedUpdateManyWithoutTweetNestedInput No
comments TweetUncheckedUpdateManyWithoutTweet_commentNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUncheckedUpdateManyWithoutPinned_tweetNestedInput No


TweetUpdateWithWhereUniqueWithoutTweet_commentInput

Name Type Nullable
where TweetWhereUniqueInput No
data TweetUpdateWithoutTweet_commentInput | TweetUncheckedUpdateWithoutTweet_commentInput No

TweetUpdateManyWithWhereWithoutTweet_commentInput

Name Type Nullable
where TweetScalarWhereInput No
data TweetUpdateManyMutationInput | TweetUncheckedUpdateManyWithoutTweet_commentInput No


TweetUpdateToOneWithWhereWithoutCommentsInput

Name Type Nullable
where TweetWhereInput No
data TweetUpdateWithoutCommentsInput | TweetUncheckedUpdateWithoutCommentsInput No

TweetUpdateWithoutCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutTweetsNestedInput No
media MediaUpdateManyWithoutTweetNestedInput No
likes LikeUpdateManyWithoutTweetNestedInput No
votes VoteUpdateManyWithoutTweetNestedInput No
retweets RetweetUpdateManyWithoutTweetNestedInput No
quotes TweetUpdateManyWithoutQuoted_tweetNestedInput No
quoted_tweet TweetUpdateOneWithoutQuotesNestedInput No
tweet_comment TweetUpdateOneWithoutCommentsNestedInput No
bookmarks BookmarkUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateWithoutCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
media MediaUncheckedUpdateManyWithoutTweetNestedInput No
likes LikeUncheckedUpdateManyWithoutTweetNestedInput No
votes VoteUncheckedUpdateManyWithoutTweetNestedInput No
retweets RetweetUncheckedUpdateManyWithoutTweetNestedInput No
quotes TweetUncheckedUpdateManyWithoutQuoted_tweetNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUncheckedUpdateManyWithoutPinned_tweetNestedInput No


BookmarkUpdateWithWhereUniqueWithoutTweetInput

Name Type Nullable
where BookmarkWhereUniqueInput No
data BookmarkUpdateWithoutTweetInput | BookmarkUncheckedUpdateWithoutTweetInput No

BookmarkUpdateManyWithWhereWithoutTweetInput

Name Type Nullable
where BookmarkScalarWhereInput No
data BookmarkUpdateManyMutationInput | BookmarkUncheckedUpdateManyWithoutTweetInput No


UserUpdateWithWhereUniqueWithoutPinned_tweetInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutPinned_tweetInput | UserUncheckedUpdateWithoutPinned_tweetInput No

UserUpdateManyWithWhereWithoutPinned_tweetInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutPinned_tweetInput No

UserScalarWhereInput

Name Type Nullable
AND UserScalarWhereInput | UserScalarWhereInput[] No
OR UserScalarWhereInput[] No
NOT UserScalarWhereInput | UserScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
screen_name StringFilter | String No
location StringNullableFilter | String | Null Yes
url StringNullableFilter | String | Null Yes
description StringNullableFilter | String | Null Yes
detail StringNullableFilter | String | Null Yes
protected BoolFilter | Boolean No
verified BoolFilter | Boolean No
email StringNullableFilter | String | Null Yes
emailVerified DateTimeNullableFilter | DateTime | Null Yes
google_id StringNullableFilter | String | Null Yes
google_username StringNullableFilter | String | Null Yes
google_email StringNullableFilter | String | Null Yes
discord_id StringNullableFilter | String | Null Yes
discord_username StringNullableFilter | String | Null Yes
discord_email StringNullableFilter | String | Null Yes
twitter_id StringNullableFilter | String | Null Yes
twitter_username StringNullableFilter | String | Null Yes
twitter_email StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
password StringNullableFilter | String | Null Yes
role EnumUserRoleFilter | UserRole No
created_at DateTimeFilter | DateTime No
followers_count IntFilter | Int No
friends_count IntFilter | Int No
favorites_count IntFilter | Int No
statuses_count IntFilter | Int No
reputation_count FloatFilter | Float No
normalized_reputation IntFilter | Int No
profile_banner_url StringNullableFilter | String | Null Yes
profile_image_url StringNullableFilter | String | Null Yes
evm_address StringNullableFilter | String | Null Yes
bech32_address StringNullableFilter | String | Null Yes
pinned_tweet_id StringNullableFilter | String | Null Yes

TweetCreateWithoutMediaInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author UserCreateNestedOneWithoutTweetsInput No
likes LikeCreateNestedManyWithoutTweetInput No
votes VoteCreateNestedManyWithoutTweetInput No
retweets RetweetCreateNestedManyWithoutTweetInput No
quotes TweetCreateNestedManyWithoutQuoted_tweetInput No
quoted_tweet TweetCreateNestedOneWithoutQuotesInput No
comments TweetCreateNestedManyWithoutTweet_commentInput No
tweet_comment TweetCreateNestedOneWithoutCommentsInput No
bookmarks BookmarkCreateNestedManyWithoutTweetInput No
pinned_by_users UserCreateNestedManyWithoutPinned_tweetInput No

TweetUncheckedCreateWithoutMediaInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String | Null Yes
in_reply_to_status_id String | Null Yes
likes LikeUncheckedCreateNestedManyWithoutTweetInput No
votes VoteUncheckedCreateNestedManyWithoutTweetInput No
retweets RetweetUncheckedCreateNestedManyWithoutTweetInput No
quotes TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput No
comments TweetUncheckedCreateNestedManyWithoutTweet_commentInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutTweetInput No
pinned_by_users UserUncheckedCreateNestedManyWithoutPinned_tweetInput No

TweetCreateOrConnectWithoutMediaInput

Name Type Nullable
where TweetWhereUniqueInput No
create TweetCreateWithoutMediaInput | TweetUncheckedCreateWithoutMediaInput No

MessageCreateWithoutMediaInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
sender UserCreateNestedOneWithoutReceived_messagesInput No
receiver UserCreateNestedOneWithoutSent_messagesInput No
conversation ConversationCreateNestedOneWithoutMessagesInput No

MessageUncheckedCreateWithoutMediaInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
sender_id String No
receiver_id String No
conversation_id String No

MessageCreateOrConnectWithoutMediaInput

Name Type Nullable
where MessageWhereUniqueInput No
create MessageCreateWithoutMediaInput | MessageUncheckedCreateWithoutMediaInput No


TweetUpdateToOneWithWhereWithoutMediaInput

Name Type Nullable
where TweetWhereInput No
data TweetUpdateWithoutMediaInput | TweetUncheckedUpdateWithoutMediaInput No

TweetUpdateWithoutMediaInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutTweetsNestedInput No
likes LikeUpdateManyWithoutTweetNestedInput No
votes VoteUpdateManyWithoutTweetNestedInput No
retweets RetweetUpdateManyWithoutTweetNestedInput No
quotes TweetUpdateManyWithoutQuoted_tweetNestedInput No
quoted_tweet TweetUpdateOneWithoutQuotesNestedInput No
comments TweetUpdateManyWithoutTweet_commentNestedInput No
tweet_comment TweetUpdateOneWithoutCommentsNestedInput No
bookmarks BookmarkUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateWithoutMediaInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
likes LikeUncheckedUpdateManyWithoutTweetNestedInput No
votes VoteUncheckedUpdateManyWithoutTweetNestedInput No
retweets RetweetUncheckedUpdateManyWithoutTweetNestedInput No
quotes TweetUncheckedUpdateManyWithoutQuoted_tweetNestedInput No
comments TweetUncheckedUpdateManyWithoutTweet_commentNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUncheckedUpdateManyWithoutPinned_tweetNestedInput No


MessageUpdateToOneWithWhereWithoutMediaInput

Name Type Nullable
where MessageWhereInput No
data MessageUpdateWithoutMediaInput | MessageUncheckedUpdateWithoutMediaInput No


MessageUncheckedUpdateWithoutMediaInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
sender_id String | StringFieldUpdateOperationsInput No
receiver_id String | StringFieldUpdateOperationsInput No
conversation_id String | StringFieldUpdateOperationsInput No

TweetCreateWithoutLikesInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author UserCreateNestedOneWithoutTweetsInput No
media MediaCreateNestedManyWithoutTweetInput No
votes VoteCreateNestedManyWithoutTweetInput No
retweets RetweetCreateNestedManyWithoutTweetInput No
quotes TweetCreateNestedManyWithoutQuoted_tweetInput No
quoted_tweet TweetCreateNestedOneWithoutQuotesInput No
comments TweetCreateNestedManyWithoutTweet_commentInput No
tweet_comment TweetCreateNestedOneWithoutCommentsInput No
bookmarks BookmarkCreateNestedManyWithoutTweetInput No
pinned_by_users UserCreateNestedManyWithoutPinned_tweetInput No

TweetUncheckedCreateWithoutLikesInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String | Null Yes
in_reply_to_status_id String | Null Yes
media MediaUncheckedCreateNestedManyWithoutTweetInput No
votes VoteUncheckedCreateNestedManyWithoutTweetInput No
retweets RetweetUncheckedCreateNestedManyWithoutTweetInput No
quotes TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput No
comments TweetUncheckedCreateNestedManyWithoutTweet_commentInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutTweetInput No
pinned_by_users UserUncheckedCreateNestedManyWithoutPinned_tweetInput No

TweetCreateOrConnectWithoutLikesInput

Name Type Nullable
where TweetWhereUniqueInput No
create TweetCreateWithoutLikesInput | TweetUncheckedCreateWithoutLikesInput No

UserCreateWithoutLikesInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutLikesInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutLikesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutLikesInput | UserUncheckedCreateWithoutLikesInput No


TweetUpdateToOneWithWhereWithoutLikesInput

Name Type Nullable
where TweetWhereInput No
data TweetUpdateWithoutLikesInput | TweetUncheckedUpdateWithoutLikesInput No

TweetUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutTweetsNestedInput No
media MediaUpdateManyWithoutTweetNestedInput No
votes VoteUpdateManyWithoutTweetNestedInput No
retweets RetweetUpdateManyWithoutTweetNestedInput No
quotes TweetUpdateManyWithoutQuoted_tweetNestedInput No
quoted_tweet TweetUpdateOneWithoutQuotesNestedInput No
comments TweetUpdateManyWithoutTweet_commentNestedInput No
tweet_comment TweetUpdateOneWithoutCommentsNestedInput No
bookmarks BookmarkUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
media MediaUncheckedUpdateManyWithoutTweetNestedInput No
votes VoteUncheckedUpdateManyWithoutTweetNestedInput No
retweets RetweetUncheckedUpdateManyWithoutTweetNestedInput No
quotes TweetUncheckedUpdateManyWithoutQuoted_tweetNestedInput No
comments TweetUncheckedUpdateManyWithoutTweet_commentNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUncheckedUpdateManyWithoutPinned_tweetNestedInput No


UserUpdateToOneWithWhereWithoutLikesInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutLikesInput | UserUncheckedUpdateWithoutLikesInput No

UserUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

UserCreateWithoutReputationsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutReputationsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutReputationsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutReputationsInput | UserUncheckedCreateWithoutReputationsInput No


UserUpdateToOneWithWhereWithoutReputationsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutReputationsInput | UserUncheckedUpdateWithoutReputationsInput No

UserUpdateWithoutReputationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutReputationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

TweetCreateWithoutVotesInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author UserCreateNestedOneWithoutTweetsInput No
media MediaCreateNestedManyWithoutTweetInput No
likes LikeCreateNestedManyWithoutTweetInput No
retweets RetweetCreateNestedManyWithoutTweetInput No
quotes TweetCreateNestedManyWithoutQuoted_tweetInput No
quoted_tweet TweetCreateNestedOneWithoutQuotesInput No
comments TweetCreateNestedManyWithoutTweet_commentInput No
tweet_comment TweetCreateNestedOneWithoutCommentsInput No
bookmarks BookmarkCreateNestedManyWithoutTweetInput No
pinned_by_users UserCreateNestedManyWithoutPinned_tweetInput No

TweetUncheckedCreateWithoutVotesInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String | Null Yes
in_reply_to_status_id String | Null Yes
media MediaUncheckedCreateNestedManyWithoutTweetInput No
likes LikeUncheckedCreateNestedManyWithoutTweetInput No
retweets RetweetUncheckedCreateNestedManyWithoutTweetInput No
quotes TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput No
comments TweetUncheckedCreateNestedManyWithoutTweet_commentInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutTweetInput No
pinned_by_users UserUncheckedCreateNestedManyWithoutPinned_tweetInput No

TweetCreateOrConnectWithoutVotesInput

Name Type Nullable
where TweetWhereUniqueInput No
create TweetCreateWithoutVotesInput | TweetUncheckedCreateWithoutVotesInput No

UserCreateWithoutVotesInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutVotesInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutVotesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutVotesInput | UserUncheckedCreateWithoutVotesInput No


TweetUpdateToOneWithWhereWithoutVotesInput

Name Type Nullable
where TweetWhereInput No
data TweetUpdateWithoutVotesInput | TweetUncheckedUpdateWithoutVotesInput No

TweetUpdateWithoutVotesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutTweetsNestedInput No
media MediaUpdateManyWithoutTweetNestedInput No
likes LikeUpdateManyWithoutTweetNestedInput No
retweets RetweetUpdateManyWithoutTweetNestedInput No
quotes TweetUpdateManyWithoutQuoted_tweetNestedInput No
quoted_tweet TweetUpdateOneWithoutQuotesNestedInput No
comments TweetUpdateManyWithoutTweet_commentNestedInput No
tweet_comment TweetUpdateOneWithoutCommentsNestedInput No
bookmarks BookmarkUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateWithoutVotesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
media MediaUncheckedUpdateManyWithoutTweetNestedInput No
likes LikeUncheckedUpdateManyWithoutTweetNestedInput No
retweets RetweetUncheckedUpdateManyWithoutTweetNestedInput No
quotes TweetUncheckedUpdateManyWithoutQuoted_tweetNestedInput No
comments TweetUncheckedUpdateManyWithoutTweet_commentNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUncheckedUpdateManyWithoutPinned_tweetNestedInput No


UserUpdateToOneWithWhereWithoutVotesInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutVotesInput | UserUncheckedUpdateWithoutVotesInput No

UserUpdateWithoutVotesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutVotesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

TweetCreateWithoutRetweetsInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author UserCreateNestedOneWithoutTweetsInput No
media MediaCreateNestedManyWithoutTweetInput No
likes LikeCreateNestedManyWithoutTweetInput No
votes VoteCreateNestedManyWithoutTweetInput No
quotes TweetCreateNestedManyWithoutQuoted_tweetInput No
quoted_tweet TweetCreateNestedOneWithoutQuotesInput No
comments TweetCreateNestedManyWithoutTweet_commentInput No
tweet_comment TweetCreateNestedOneWithoutCommentsInput No
bookmarks BookmarkCreateNestedManyWithoutTweetInput No
pinned_by_users UserCreateNestedManyWithoutPinned_tweetInput No

TweetUncheckedCreateWithoutRetweetsInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String | Null Yes
in_reply_to_status_id String | Null Yes
media MediaUncheckedCreateNestedManyWithoutTweetInput No
likes LikeUncheckedCreateNestedManyWithoutTweetInput No
votes VoteUncheckedCreateNestedManyWithoutTweetInput No
quotes TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput No
comments TweetUncheckedCreateNestedManyWithoutTweet_commentInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutTweetInput No
pinned_by_users UserUncheckedCreateNestedManyWithoutPinned_tweetInput No

TweetCreateOrConnectWithoutRetweetsInput

Name Type Nullable
where TweetWhereUniqueInput No
create TweetCreateWithoutRetweetsInput | TweetUncheckedCreateWithoutRetweetsInput No

UserCreateWithoutRetweetsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutRetweetsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutRetweetsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutRetweetsInput | UserUncheckedCreateWithoutRetweetsInput No


TweetUpdateToOneWithWhereWithoutRetweetsInput

Name Type Nullable
where TweetWhereInput No
data TweetUpdateWithoutRetweetsInput | TweetUncheckedUpdateWithoutRetweetsInput No

TweetUpdateWithoutRetweetsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutTweetsNestedInput No
media MediaUpdateManyWithoutTweetNestedInput No
likes LikeUpdateManyWithoutTweetNestedInput No
votes VoteUpdateManyWithoutTweetNestedInput No
quotes TweetUpdateManyWithoutQuoted_tweetNestedInput No
quoted_tweet TweetUpdateOneWithoutQuotesNestedInput No
comments TweetUpdateManyWithoutTweet_commentNestedInput No
tweet_comment TweetUpdateOneWithoutCommentsNestedInput No
bookmarks BookmarkUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateWithoutRetweetsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
media MediaUncheckedUpdateManyWithoutTweetNestedInput No
likes LikeUncheckedUpdateManyWithoutTweetNestedInput No
votes VoteUncheckedUpdateManyWithoutTweetNestedInput No
quotes TweetUncheckedUpdateManyWithoutQuoted_tweetNestedInput No
comments TweetUncheckedUpdateManyWithoutTweet_commentNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUncheckedUpdateManyWithoutPinned_tweetNestedInput No


UserUpdateToOneWithWhereWithoutRetweetsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutRetweetsInput | UserUncheckedUpdateWithoutRetweetsInput No

UserUpdateWithoutRetweetsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutRetweetsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

TweetCreateWithoutBookmarksInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author UserCreateNestedOneWithoutTweetsInput No
media MediaCreateNestedManyWithoutTweetInput No
likes LikeCreateNestedManyWithoutTweetInput No
votes VoteCreateNestedManyWithoutTweetInput No
retweets RetweetCreateNestedManyWithoutTweetInput No
quotes TweetCreateNestedManyWithoutQuoted_tweetInput No
quoted_tweet TweetCreateNestedOneWithoutQuotesInput No
comments TweetCreateNestedManyWithoutTweet_commentInput No
tweet_comment TweetCreateNestedOneWithoutCommentsInput No
pinned_by_users UserCreateNestedManyWithoutPinned_tweetInput No

TweetUncheckedCreateWithoutBookmarksInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String | Null Yes
in_reply_to_status_id String | Null Yes
media MediaUncheckedCreateNestedManyWithoutTweetInput No
likes LikeUncheckedCreateNestedManyWithoutTweetInput No
votes VoteUncheckedCreateNestedManyWithoutTweetInput No
retweets RetweetUncheckedCreateNestedManyWithoutTweetInput No
quotes TweetUncheckedCreateNestedManyWithoutQuoted_tweetInput No
comments TweetUncheckedCreateNestedManyWithoutTweet_commentInput No
pinned_by_users UserUncheckedCreateNestedManyWithoutPinned_tweetInput No

TweetCreateOrConnectWithoutBookmarksInput

Name Type Nullable
where TweetWhereUniqueInput No
create TweetCreateWithoutBookmarksInput | TweetUncheckedCreateWithoutBookmarksInput No

UserCreateWithoutBookmarksInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutBookmarksInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutBookmarksInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutBookmarksInput | UserUncheckedCreateWithoutBookmarksInput No


TweetUpdateToOneWithWhereWithoutBookmarksInput

Name Type Nullable
where TweetWhereInput No
data TweetUpdateWithoutBookmarksInput | TweetUncheckedUpdateWithoutBookmarksInput No

TweetUpdateWithoutBookmarksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutTweetsNestedInput No
media MediaUpdateManyWithoutTweetNestedInput No
likes LikeUpdateManyWithoutTweetNestedInput No
votes VoteUpdateManyWithoutTweetNestedInput No
retweets RetweetUpdateManyWithoutTweetNestedInput No
quotes TweetUpdateManyWithoutQuoted_tweetNestedInput No
quoted_tweet TweetUpdateOneWithoutQuotesNestedInput No
comments TweetUpdateManyWithoutTweet_commentNestedInput No
tweet_comment TweetUpdateOneWithoutCommentsNestedInput No
pinned_by_users UserUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateWithoutBookmarksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
media MediaUncheckedUpdateManyWithoutTweetNestedInput No
likes LikeUncheckedUpdateManyWithoutTweetNestedInput No
votes VoteUncheckedUpdateManyWithoutTweetNestedInput No
retweets RetweetUncheckedUpdateManyWithoutTweetNestedInput No
quotes TweetUncheckedUpdateManyWithoutQuoted_tweetNestedInput No
comments TweetUncheckedUpdateManyWithoutTweet_commentNestedInput No
pinned_by_users UserUncheckedUpdateManyWithoutPinned_tweetNestedInput No


UserUpdateToOneWithWhereWithoutBookmarksInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutBookmarksInput | UserUncheckedUpdateWithoutBookmarksInput No

UserUpdateWithoutBookmarksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutBookmarksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

UserCreateWithoutReceived_messagesInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutReceived_messagesInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutReceived_messagesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutReceived_messagesInput | UserUncheckedCreateWithoutReceived_messagesInput No

UserCreateWithoutSent_messagesInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutSent_messagesInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutSent_messagesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutSent_messagesInput | UserUncheckedCreateWithoutSent_messagesInput No

ConversationCreateWithoutMessagesInput

Name Type Nullable
id String No
created_at DateTime No
users UserCreateNestedManyWithoutConversationsInput No

ConversationUncheckedCreateWithoutMessagesInput

Name Type Nullable
id String No
created_at DateTime No
users UserUncheckedCreateNestedManyWithoutConversationsInput No

ConversationCreateOrConnectWithoutMessagesInput

Name Type Nullable
where ConversationWhereUniqueInput No
create ConversationCreateWithoutMessagesInput | ConversationUncheckedCreateWithoutMessagesInput No

MediaCreateWithoutMessageInput

Name Type Nullable
id String No
media_url String No
media_type String No
media_path String No
tweet TweetCreateNestedOneWithoutMediaInput No

MediaUncheckedCreateWithoutMessageInput

Name Type Nullable
id String No
media_url String No
media_type String No
media_path String No
tweet_id String | Null Yes

MediaCreateOrConnectWithoutMessageInput

Name Type Nullable
where MediaWhereUniqueInput No
create MediaCreateWithoutMessageInput | MediaUncheckedCreateWithoutMessageInput No

MediaCreateManyMessageInputEnvelope

Name Type Nullable
data MediaCreateManyMessageInput | MediaCreateManyMessageInput[] No
skipDuplicates Boolean No


UserUpdateToOneWithWhereWithoutReceived_messagesInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutReceived_messagesInput | UserUncheckedUpdateWithoutReceived_messagesInput No

UserUpdateWithoutReceived_messagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutReceived_messagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No


UserUpdateToOneWithWhereWithoutSent_messagesInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutSent_messagesInput | UserUncheckedUpdateWithoutSent_messagesInput No

UserUpdateWithoutSent_messagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutSent_messagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No


ConversationUpdateToOneWithWhereWithoutMessagesInput

Name Type Nullable
where ConversationWhereInput No
data ConversationUpdateWithoutMessagesInput | ConversationUncheckedUpdateWithoutMessagesInput No

ConversationUpdateWithoutMessagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
users UserUpdateManyWithoutConversationsNestedInput No

ConversationUncheckedUpdateWithoutMessagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
users UserUncheckedUpdateManyWithoutConversationsNestedInput No


MediaUpdateWithWhereUniqueWithoutMessageInput

Name Type Nullable
where MediaWhereUniqueInput No
data MediaUpdateWithoutMessageInput | MediaUncheckedUpdateWithoutMessageInput No

MediaUpdateManyWithWhereWithoutMessageInput

Name Type Nullable
where MediaScalarWhereInput No
data MediaUpdateManyMutationInput | MediaUncheckedUpdateManyWithoutMessageInput No

UserCreateWithoutConversationsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
cryptoLoginNonce CryptoLoginNonceCreateNestedOneWithoutUserInput No
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutConversationsInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedCreateNestedOneWithoutUserInput No
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No

UserCreateOrConnectWithoutConversationsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutConversationsInput | UserUncheckedCreateWithoutConversationsInput No

MessageCreateWithoutConversationInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
sender UserCreateNestedOneWithoutReceived_messagesInput No
receiver UserCreateNestedOneWithoutSent_messagesInput No
media MediaCreateNestedManyWithoutMessageInput No

MessageUncheckedCreateWithoutConversationInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
sender_id String No
receiver_id String No
media MediaUncheckedCreateNestedManyWithoutMessageInput No

MessageCreateOrConnectWithoutConversationInput

Name Type Nullable
where MessageWhereUniqueInput No
create MessageCreateWithoutConversationInput | MessageUncheckedCreateWithoutConversationInput No

MessageCreateManyConversationInputEnvelope

Name Type Nullable
data MessageCreateManyConversationInput | MessageCreateManyConversationInput[] No
skipDuplicates Boolean No


UserUpdateWithWhereUniqueWithoutConversationsInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutConversationsInput | UserUncheckedUpdateWithoutConversationsInput No

UserUpdateManyWithWhereWithoutConversationsInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutConversationsInput No


MessageUpdateWithWhereUniqueWithoutConversationInput

Name Type Nullable
where MessageWhereUniqueInput No
data MessageUpdateWithoutConversationInput | MessageUncheckedUpdateWithoutConversationInput No

MessageUpdateManyWithWhereWithoutConversationInput

Name Type Nullable
where MessageScalarWhereInput No
data MessageUpdateManyMutationInput | MessageUncheckedUpdateManyWithoutConversationInput No

UserCreateWithoutCryptoLoginNonceInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
sessions SessionCreateNestedManyWithoutUserInput No
tweets TweetCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutUserInput No
reputations ReputationCreateNestedManyWithoutUserInput No
votes VoteCreateNestedManyWithoutUserInput No
followers FollowerCreateNestedManyWithoutFollowerInput No
following FollowerCreateNestedManyWithoutFollowedInput No
transactions TransactionCreateNestedManyWithoutUserInput No
retweets RetweetCreateNestedManyWithoutUserInput No
bookmarks BookmarkCreateNestedManyWithoutUserInput No
sent_messages MessageCreateNestedManyWithoutReceiverInput No
received_messages MessageCreateNestedManyWithoutSenderInput No
conversations ConversationCreateNestedManyWithoutUsersInput No
pinned_tweet TweetCreateNestedOneWithoutPinned_by_usersInput No

UserUncheckedCreateWithoutCryptoLoginNonceInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes
pinned_tweet_id String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
tweets TweetUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutUserInput No
reputations ReputationUncheckedCreateNestedManyWithoutUserInput No
votes VoteUncheckedCreateNestedManyWithoutUserInput No
followers FollowerUncheckedCreateNestedManyWithoutFollowerInput No
following FollowerUncheckedCreateNestedManyWithoutFollowedInput No
transactions TransactionUncheckedCreateNestedManyWithoutUserInput No
retweets RetweetUncheckedCreateNestedManyWithoutUserInput No
bookmarks BookmarkUncheckedCreateNestedManyWithoutUserInput No
sent_messages MessageUncheckedCreateNestedManyWithoutReceiverInput No
received_messages MessageUncheckedCreateNestedManyWithoutSenderInput No
conversations ConversationUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutCryptoLoginNonceInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutCryptoLoginNonceInput | UserUncheckedCreateWithoutCryptoLoginNonceInput No


UserUpdateToOneWithWhereWithoutCryptoLoginNonceInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutCryptoLoginNonceInput | UserUncheckedUpdateWithoutCryptoLoginNonceInput No

UserUpdateWithoutCryptoLoginNonceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutCryptoLoginNonceInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

AccountCreateManyUserInput

Name Type Nullable
id String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
oath_token String | Null Yes
oauth_token_secret String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes

SessionCreateManyUserInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No

TweetCreateManyAuthorInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
quoted_tweet_id String | Null Yes
in_reply_to_status_id String | Null Yes

LikeCreateManyUserInput

Name Type Nullable
id String No
tweet_id String No
created_at DateTime No

ReputationCreateManyUserInput

Name Type Nullable
id String No
session_owner_id String No
reputation_status String No
created_at DateTime No

VoteCreateManyUserInput

Name Type Nullable
id String No
tweet_id String No
vote_status String No
created_at DateTime No

FollowerCreateManyFollowerInput

Name Type Nullable
id String No
followed_id String No
created_at DateTime No

FollowerCreateManyFollowedInput

Name Type Nullable
id String No
follower_id String No
created_at DateTime No

TransactionCreateManyUserInput

Name Type Nullable
id String No
user_id String No
balance Float No
amount Float No
description String No
created_at DateTime No

RetweetCreateManyUserInput

Name Type Nullable
id String No
tweet_id String No
created_at DateTime No

BookmarkCreateManyUserInput

Name Type Nullable
id String No
tweet_id String No
created_at DateTime No

MessageCreateManyReceiverInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
sender_id String No
conversation_id String No

MessageCreateManySenderInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
receiver_id String No
conversation_id String No

AccountUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oath_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oath_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oath_token String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes

SessionUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

SessionUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

SessionUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

TweetUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
media MediaUpdateManyWithoutTweetNestedInput No
likes LikeUpdateManyWithoutTweetNestedInput No
votes VoteUpdateManyWithoutTweetNestedInput No
retweets RetweetUpdateManyWithoutTweetNestedInput No
quotes TweetUpdateManyWithoutQuoted_tweetNestedInput No
quoted_tweet TweetUpdateOneWithoutQuotesNestedInput No
comments TweetUpdateManyWithoutTweet_commentNestedInput No
tweet_comment TweetUpdateOneWithoutCommentsNestedInput No
bookmarks BookmarkUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
media MediaUncheckedUpdateManyWithoutTweetNestedInput No
likes LikeUncheckedUpdateManyWithoutTweetNestedInput No
votes VoteUncheckedUpdateManyWithoutTweetNestedInput No
retweets RetweetUncheckedUpdateManyWithoutTweetNestedInput No
quotes TweetUncheckedUpdateManyWithoutQuoted_tweetNestedInput No
comments TweetUncheckedUpdateManyWithoutTweet_commentNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUncheckedUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateManyWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes

LikeUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
tweet TweetUpdateOneRequiredWithoutLikesNestedInput No

LikeUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

LikeUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

ReputationUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
session_owner_id String | StringFieldUpdateOperationsInput No
reputation_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

ReputationUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
session_owner_id String | StringFieldUpdateOperationsInput No
reputation_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

ReputationUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
session_owner_id String | StringFieldUpdateOperationsInput No
reputation_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

VoteUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
vote_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
tweet TweetUpdateOneRequiredWithoutVotesNestedInput No

VoteUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
vote_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

VoteUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
vote_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

FollowerUpdateWithoutFollowerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followed UserUpdateOneRequiredWithoutFollowingNestedInput No

FollowerUncheckedUpdateWithoutFollowerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followed_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

FollowerUncheckedUpdateManyWithoutFollowerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followed_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

FollowerUpdateWithoutFollowedInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
follower UserUpdateOneRequiredWithoutFollowersNestedInput No

FollowerUncheckedUpdateWithoutFollowedInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
follower_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

FollowerUncheckedUpdateManyWithoutFollowedInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
follower_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

TransactionUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
balance Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

TransactionUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
balance Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

TransactionUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
balance Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

RetweetUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
tweet TweetUpdateOneRequiredWithoutRetweetsNestedInput No

RetweetUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

RetweetUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

BookmarkUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
tweet TweetUpdateOneRequiredWithoutBookmarksNestedInput No

BookmarkUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

BookmarkUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
tweet_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No


MessageUncheckedUpdateWithoutReceiverInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
sender_id String | StringFieldUpdateOperationsInput No
conversation_id String | StringFieldUpdateOperationsInput No
media MediaUncheckedUpdateManyWithoutMessageNestedInput No

MessageUncheckedUpdateManyWithoutReceiverInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
sender_id String | StringFieldUpdateOperationsInput No
conversation_id String | StringFieldUpdateOperationsInput No


MessageUncheckedUpdateWithoutSenderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
receiver_id String | StringFieldUpdateOperationsInput No
conversation_id String | StringFieldUpdateOperationsInput No
media MediaUncheckedUpdateManyWithoutMessageNestedInput No

MessageUncheckedUpdateManyWithoutSenderInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
receiver_id String | StringFieldUpdateOperationsInput No
conversation_id String | StringFieldUpdateOperationsInput No

ConversationUpdateWithoutUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
messages MessageUpdateManyWithoutConversationNestedInput No

ConversationUncheckedUpdateWithoutUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
messages MessageUncheckedUpdateManyWithoutConversationNestedInput No

ConversationUncheckedUpdateManyWithoutUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

MediaCreateManyTweetInput

Name Type Nullable
id String No
media_url String No
media_type String No
media_path String No
message_id String | Null Yes

LikeCreateManyTweetInput

Name Type Nullable
id String No
user_id String No
created_at DateTime No

VoteCreateManyTweetInput

Name Type Nullable
id String No
user_id String No
vote_status String No
created_at DateTime No

RetweetCreateManyTweetInput

Name Type Nullable
id String No
user_id String No
created_at DateTime No

TweetCreateManyQuoted_tweetInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
in_reply_to_status_id String | Null Yes

TweetCreateManyTweet_commentInput

Name Type Nullable
id String No
text String | Null Yes
source String No
in_reply_to_user_id String | Null Yes
in_reply_to_screen_name String | Null Yes
is_quote_status Boolean No
quoted_status_id String | Null Yes
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String | Null Yes

BookmarkCreateManyTweetInput

Name Type Nullable
id String No
user_id String No
created_at DateTime No

UserCreateManyPinned_tweetInput

Name Type Nullable
id String No
name String No
screen_name String No
location String | Null Yes
url String | Null Yes
description String | Null Yes
detail String | Null Yes
protected Boolean No
verified Boolean No
email String | Null Yes
emailVerified DateTime | Null Yes
google_id String | Null Yes
google_username String | Null Yes
google_email String | Null Yes
discord_id String | Null Yes
discord_username String | Null Yes
discord_email String | Null Yes
twitter_id String | Null Yes
twitter_username String | Null Yes
twitter_email String | Null Yes
image String | Null Yes
password String | Null Yes
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String | Null Yes
profile_image_url String | Null Yes
evm_address String | Null Yes
bech32_address String | Null Yes

MediaUpdateWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
media_url String | StringFieldUpdateOperationsInput No
media_type String | StringFieldUpdateOperationsInput No
media_path String | StringFieldUpdateOperationsInput No
Message MessageUpdateOneWithoutMediaNestedInput No

MediaUncheckedUpdateWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
media_url String | StringFieldUpdateOperationsInput No
media_type String | StringFieldUpdateOperationsInput No
media_path String | StringFieldUpdateOperationsInput No
message_id String | NullableStringFieldUpdateOperationsInput | Null Yes

MediaUncheckedUpdateManyWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
media_url String | StringFieldUpdateOperationsInput No
media_type String | StringFieldUpdateOperationsInput No
media_path String | StringFieldUpdateOperationsInput No
message_id String | NullableStringFieldUpdateOperationsInput | Null Yes

LikeUpdateWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutLikesNestedInput No

LikeUncheckedUpdateWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

LikeUncheckedUpdateManyWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

VoteUpdateWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
vote_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutVotesNestedInput No

VoteUncheckedUpdateWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
vote_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

VoteUncheckedUpdateManyWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
vote_status String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

RetweetUpdateWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutRetweetsNestedInput No

RetweetUncheckedUpdateWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

RetweetUncheckedUpdateManyWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

TweetUpdateWithoutQuoted_tweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutTweetsNestedInput No
media MediaUpdateManyWithoutTweetNestedInput No
likes LikeUpdateManyWithoutTweetNestedInput No
votes VoteUpdateManyWithoutTweetNestedInput No
retweets RetweetUpdateManyWithoutTweetNestedInput No
quotes TweetUpdateManyWithoutQuoted_tweetNestedInput No
comments TweetUpdateManyWithoutTweet_commentNestedInput No
tweet_comment TweetUpdateOneWithoutCommentsNestedInput No
bookmarks BookmarkUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateWithoutQuoted_tweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
media MediaUncheckedUpdateManyWithoutTweetNestedInput No
likes LikeUncheckedUpdateManyWithoutTweetNestedInput No
votes VoteUncheckedUpdateManyWithoutTweetNestedInput No
retweets RetweetUncheckedUpdateManyWithoutTweetNestedInput No
quotes TweetUncheckedUpdateManyWithoutQuoted_tweetNestedInput No
comments TweetUncheckedUpdateManyWithoutTweet_commentNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUncheckedUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateManyWithoutQuoted_tweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
in_reply_to_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes

TweetUpdateWithoutTweet_commentInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutTweetsNestedInput No
media MediaUpdateManyWithoutTweetNestedInput No
likes LikeUpdateManyWithoutTweetNestedInput No
votes VoteUpdateManyWithoutTweetNestedInput No
retweets RetweetUpdateManyWithoutTweetNestedInput No
quotes TweetUpdateManyWithoutQuoted_tweetNestedInput No
quoted_tweet TweetUpdateOneWithoutQuotesNestedInput No
comments TweetUpdateManyWithoutTweet_commentNestedInput No
bookmarks BookmarkUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateWithoutTweet_commentInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
media MediaUncheckedUpdateManyWithoutTweetNestedInput No
likes LikeUncheckedUpdateManyWithoutTweetNestedInput No
votes VoteUncheckedUpdateManyWithoutTweetNestedInput No
retweets RetweetUncheckedUpdateManyWithoutTweetNestedInput No
quotes TweetUncheckedUpdateManyWithoutQuoted_tweetNestedInput No
comments TweetUncheckedUpdateManyWithoutTweet_commentNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutTweetNestedInput No
pinned_by_users UserUncheckedUpdateManyWithoutPinned_tweetNestedInput No

TweetUncheckedUpdateManyWithoutTweet_commentInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
source String | StringFieldUpdateOperationsInput No
in_reply_to_user_id String | NullableStringFieldUpdateOperationsInput | Null Yes
in_reply_to_screen_name String | NullableStringFieldUpdateOperationsInput | Null Yes
is_quote_status Boolean | BoolFieldUpdateOperationsInput No
quoted_status_id String | NullableStringFieldUpdateOperationsInput | Null Yes
quote_count Int | IntFieldUpdateOperationsInput No
reply_count Int | IntFieldUpdateOperationsInput No
retweet_count Int | IntFieldUpdateOperationsInput No
favorite_count Int | IntFieldUpdateOperationsInput No
vote_count Int | IntFieldUpdateOperationsInput No
possibly_sensitive Boolean | BoolFieldUpdateOperationsInput No
lang String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
author_id String | StringFieldUpdateOperationsInput No
quoted_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes

BookmarkUpdateWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutBookmarksNestedInput No

BookmarkUncheckedUpdateWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

BookmarkUncheckedUpdateManyWithoutTweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
user_id String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

UserUpdateWithoutPinned_tweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
conversations ConversationUpdateManyWithoutUsersNestedInput No

UserUncheckedUpdateWithoutPinned_tweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No
conversations ConversationUncheckedUpdateManyWithoutUsersNestedInput No

UserUncheckedUpdateManyWithoutPinned_tweetInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes

MediaCreateManyMessageInput

Name Type Nullable
id String No
media_url String No
media_type String No
media_path String No
tweet_id String | Null Yes

MediaUpdateWithoutMessageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
media_url String | StringFieldUpdateOperationsInput No
media_type String | StringFieldUpdateOperationsInput No
media_path String | StringFieldUpdateOperationsInput No
tweet TweetUpdateOneWithoutMediaNestedInput No

MediaUncheckedUpdateWithoutMessageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
media_url String | StringFieldUpdateOperationsInput No
media_type String | StringFieldUpdateOperationsInput No
media_path String | StringFieldUpdateOperationsInput No
tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes

MediaUncheckedUpdateManyWithoutMessageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
media_url String | StringFieldUpdateOperationsInput No
media_type String | StringFieldUpdateOperationsInput No
media_path String | StringFieldUpdateOperationsInput No
tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes

MessageCreateManyConversationInput

Name Type Nullable
id String No
text String | Null Yes
image String | Null Yes
created_at DateTime No
sender_id String No
receiver_id String No

UserUpdateWithoutConversationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUpdateOneWithoutUserNestedInput No
accounts AccountUpdateManyWithoutUserNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
tweets TweetUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutUserNestedInput No
reputations ReputationUpdateManyWithoutUserNestedInput No
votes VoteUpdateManyWithoutUserNestedInput No
followers FollowerUpdateManyWithoutFollowerNestedInput No
following FollowerUpdateManyWithoutFollowedNestedInput No
transactions TransactionUpdateManyWithoutUserNestedInput No
retweets RetweetUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUpdateManyWithoutUserNestedInput No
sent_messages MessageUpdateManyWithoutReceiverNestedInput No
received_messages MessageUpdateManyWithoutSenderNestedInput No
pinned_tweet TweetUpdateOneWithoutPinned_by_usersNestedInput No

UserUncheckedUpdateWithoutConversationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes
cryptoLoginNonce CryptoLoginNonceUncheckedUpdateOneWithoutUserNestedInput No
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
tweets TweetUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutUserNestedInput No
reputations ReputationUncheckedUpdateManyWithoutUserNestedInput No
votes VoteUncheckedUpdateManyWithoutUserNestedInput No
followers FollowerUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowerUncheckedUpdateManyWithoutFollowedNestedInput No
transactions TransactionUncheckedUpdateManyWithoutUserNestedInput No
retweets RetweetUncheckedUpdateManyWithoutUserNestedInput No
bookmarks BookmarkUncheckedUpdateManyWithoutUserNestedInput No
sent_messages MessageUncheckedUpdateManyWithoutReceiverNestedInput No
received_messages MessageUncheckedUpdateManyWithoutSenderNestedInput No

UserUncheckedUpdateManyWithoutConversationsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
screen_name String | StringFieldUpdateOperationsInput No
location String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
detail String | NullableStringFieldUpdateOperationsInput | Null Yes
protected Boolean | BoolFieldUpdateOperationsInput No
verified Boolean | BoolFieldUpdateOperationsInput No
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
google_id String | NullableStringFieldUpdateOperationsInput | Null Yes
google_username String | NullableStringFieldUpdateOperationsInput | Null Yes
google_email String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_id String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_username String | NullableStringFieldUpdateOperationsInput | Null Yes
discord_email String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_id String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_username String | NullableStringFieldUpdateOperationsInput | Null Yes
twitter_email String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
password String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
followers_count Int | IntFieldUpdateOperationsInput No
friends_count Int | IntFieldUpdateOperationsInput No
favorites_count Int | IntFieldUpdateOperationsInput No
statuses_count Int | IntFieldUpdateOperationsInput No
reputation_count Float | FloatFieldUpdateOperationsInput No
normalized_reputation Int | IntFieldUpdateOperationsInput No
profile_banner_url String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_image_url String | NullableStringFieldUpdateOperationsInput | Null Yes
evm_address String | NullableStringFieldUpdateOperationsInput | Null Yes
bech32_address String | NullableStringFieldUpdateOperationsInput | Null Yes
pinned_tweet_id String | NullableStringFieldUpdateOperationsInput | Null Yes


MessageUncheckedUpdateWithoutConversationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
sender_id String | StringFieldUpdateOperationsInput No
receiver_id String | StringFieldUpdateOperationsInput No
media MediaUncheckedUpdateManyWithoutMessageNestedInput No

MessageUncheckedUpdateManyWithoutConversationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
text String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
sender_id String | StringFieldUpdateOperationsInput No
receiver_id String | StringFieldUpdateOperationsInput No

Output Types

VerificationToken

Name Type Nullable
identifier String Yes
token String Yes
expires DateTime Yes

Account

Name Type Nullable
id String Yes
userId String Yes
type String Yes
provider String Yes
providerAccountId String Yes
refresh_token String No
access_token String No
oath_token String No
oauth_token_secret String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
user User Yes

Session

Name Type Nullable
id String Yes
sessionToken String Yes
expires DateTime Yes
userId String Yes
user User Yes

User

Name Type Nullable
id String Yes
name String Yes
screen_name String Yes
location String No
url String No
description String No
detail String No
protected Boolean Yes
verified Boolean Yes
email String No
emailVerified DateTime No
google_id String No
google_username String No
google_email String No
discord_id String No
discord_username String No
discord_email String No
twitter_id String No
twitter_username String No
twitter_email String No
image String No
password String No
role UserRole Yes
created_at DateTime Yes
followers_count Int Yes
friends_count Int Yes
favorites_count Int Yes
statuses_count Int Yes
reputation_count Float Yes
normalized_reputation Int Yes
profile_banner_url String No
profile_image_url String No
evm_address String No
bech32_address String No
pinned_tweet_id String No
cryptoLoginNonce CryptoLoginNonce No
accounts Account[] No
sessions Session[] No
tweets Tweet[] No
likes Like[] No
reputations Reputation[] No
votes Vote[] No
followers Follower[] No
following Follower[] No
transactions Transaction[] No
retweets Retweet[] No
bookmarks Bookmark[] No
sent_messages Message[] No
received_messages Message[] No
conversations Conversation[] No
pinned_tweet Tweet No
_count UserCountOutputType Yes

Follower

Name Type Nullable
id String Yes
follower_id String Yes
followed_id String Yes
created_at DateTime Yes
follower User Yes
followed User Yes

Transaction

Name Type Nullable
id String Yes
user_id String Yes
follower_id String Yes
balance Float Yes
amount Float Yes
description String Yes
created_at DateTime Yes
user User Yes

Tweet

Name Type Nullable
id String Yes
text String No
source String Yes
in_reply_to_user_id String No
in_reply_to_screen_name String No
is_quote_status Boolean Yes
quoted_status_id String No
quote_count Int Yes
reply_count Int Yes
retweet_count Int Yes
favorite_count Int Yes
vote_count Int Yes
possibly_sensitive Boolean Yes
lang String Yes
created_at DateTime Yes
author_id String Yes
quoted_tweet_id String No
in_reply_to_status_id String No
author User Yes
media Media[] No
likes Like[] No
votes Vote[] No
retweets Retweet[] No
quotes Tweet[] No
quoted_tweet Tweet No
comments Tweet[] No
tweet_comment Tweet No
bookmarks Bookmark[] No
pinned_by_users User[] No
_count TweetCountOutputType Yes

Media

Name Type Nullable
id String Yes
media_url String Yes
media_type String Yes
media_path String Yes
tweet_id String No
message_id String No
tweet Tweet No
Message Message No

Like

Name Type Nullable
id String Yes
tweet_id String Yes
user_id String Yes
created_at DateTime Yes
tweet Tweet Yes
user User Yes

Reputation

Name Type Nullable
id String Yes
user_id String Yes
session_owner_id String Yes
reputation_status String Yes
created_at DateTime Yes
user User Yes

Vote

Name Type Nullable
id String Yes
tweet_id String Yes
user_id String Yes
vote_status String Yes
created_at DateTime Yes
tweet Tweet Yes
user User Yes

Retweet

Name Type Nullable
id String Yes
tweet_id String Yes
user_id String Yes
created_at DateTime Yes
tweet Tweet Yes
user User Yes

Bookmark

Name Type Nullable
id String Yes
tweet_id String Yes
user_id String Yes
created_at DateTime Yes
tweet Tweet Yes
user User Yes

Hashtag

Name Type Nullable
id String Yes
text String Yes
hashtag String Yes
score Int Yes
created_at DateTime Yes

Message

Name Type Nullable
id String Yes
text String No
image String No
created_at DateTime Yes
sender_id String Yes
receiver_id String Yes
conversation_id String Yes
sender User Yes
receiver User Yes
conversation Conversation Yes
media Media[] No
_count MessageCountOutputType Yes

Conversation

Name Type Nullable
id String Yes
created_at DateTime Yes
users User[] No
messages Message[] No
_count ConversationCountOutputType Yes

CryptoLoginNonce

Name Type Nullable
userId String Yes
nonce String Yes
expires DateTime Yes
user User Yes


VerificationTokenGroupByOutputType

Name Type Nullable
identifier String Yes
token String Yes
expires DateTime Yes
_count VerificationTokenCountAggregateOutputType No
_min VerificationTokenMinAggregateOutputType No
_max VerificationTokenMaxAggregateOutputType No


AccountGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
type String Yes
provider String Yes
providerAccountId String Yes
refresh_token String No
access_token String No
oath_token String No
oauth_token_secret String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
_count AccountCountAggregateOutputType No
_avg AccountAvgAggregateOutputType No
_sum AccountSumAggregateOutputType No
_min AccountMinAggregateOutputType No
_max AccountMaxAggregateOutputType No

AggregateSession

Name Type Nullable
_count SessionCountAggregateOutputType No
_min SessionMinAggregateOutputType No
_max SessionMaxAggregateOutputType No

SessionGroupByOutputType

Name Type Nullable
id String Yes
sessionToken String Yes
expires DateTime Yes
userId String Yes
_count SessionCountAggregateOutputType No
_min SessionMinAggregateOutputType No
_max SessionMaxAggregateOutputType No


UserGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
screen_name String Yes
location String No
url String No
description String No
detail String No
protected Boolean Yes
verified Boolean Yes
email String No
emailVerified DateTime No
google_id String No
google_username String No
google_email String No
discord_id String No
discord_username String No
discord_email String No
twitter_id String No
twitter_username String No
twitter_email String No
image String No
password String No
role UserRole Yes
created_at DateTime Yes
followers_count Int Yes
friends_count Int Yes
favorites_count Int Yes
statuses_count Int Yes
reputation_count Float Yes
normalized_reputation Int Yes
profile_banner_url String No
profile_image_url String No
evm_address String No
bech32_address String No
pinned_tweet_id String No
_count UserCountAggregateOutputType No
_avg UserAvgAggregateOutputType No
_sum UserSumAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

AggregateFollower

Name Type Nullable
_count FollowerCountAggregateOutputType No
_min FollowerMinAggregateOutputType No
_max FollowerMaxAggregateOutputType No

FollowerGroupByOutputType

Name Type Nullable
id String Yes
follower_id String Yes
followed_id String Yes
created_at DateTime Yes
_count FollowerCountAggregateOutputType No
_min FollowerMinAggregateOutputType No
_max FollowerMaxAggregateOutputType No


TransactionGroupByOutputType

Name Type Nullable
id String Yes
user_id String Yes
follower_id String Yes
balance Float Yes
amount Float Yes
description String Yes
created_at DateTime Yes
_count TransactionCountAggregateOutputType No
_avg TransactionAvgAggregateOutputType No
_sum TransactionSumAggregateOutputType No
_min TransactionMinAggregateOutputType No
_max TransactionMaxAggregateOutputType No


TweetGroupByOutputType

Name Type Nullable
id String Yes
text String No
source String Yes
in_reply_to_user_id String No
in_reply_to_screen_name String No
is_quote_status Boolean Yes
quoted_status_id String No
quote_count Int Yes
reply_count Int Yes
retweet_count Int Yes
favorite_count Int Yes
vote_count Int Yes
possibly_sensitive Boolean Yes
lang String Yes
created_at DateTime Yes
author_id String Yes
quoted_tweet_id String No
in_reply_to_status_id String No
_count TweetCountAggregateOutputType No
_avg TweetAvgAggregateOutputType No
_sum TweetSumAggregateOutputType No
_min TweetMinAggregateOutputType No
_max TweetMaxAggregateOutputType No

AggregateMedia

Name Type Nullable
_count MediaCountAggregateOutputType No
_min MediaMinAggregateOutputType No
_max MediaMaxAggregateOutputType No

MediaGroupByOutputType

Name Type Nullable
id String Yes
media_url String Yes
media_type String Yes
media_path String Yes
tweet_id String No
message_id String No
_count MediaCountAggregateOutputType No
_min MediaMinAggregateOutputType No
_max MediaMaxAggregateOutputType No

AggregateLike

Name Type Nullable
_count LikeCountAggregateOutputType No
_min LikeMinAggregateOutputType No
_max LikeMaxAggregateOutputType No

LikeGroupByOutputType

Name Type Nullable
id String Yes
tweet_id String Yes
user_id String Yes
created_at DateTime Yes
_count LikeCountAggregateOutputType No
_min LikeMinAggregateOutputType No
_max LikeMaxAggregateOutputType No

AggregateReputation

Name Type Nullable
_count ReputationCountAggregateOutputType No
_min ReputationMinAggregateOutputType No
_max ReputationMaxAggregateOutputType No

ReputationGroupByOutputType

Name Type Nullable
id String Yes
user_id String Yes
session_owner_id String Yes
reputation_status String Yes
created_at DateTime Yes
_count ReputationCountAggregateOutputType No
_min ReputationMinAggregateOutputType No
_max ReputationMaxAggregateOutputType No

AggregateVote

Name Type Nullable
_count VoteCountAggregateOutputType No
_min VoteMinAggregateOutputType No
_max VoteMaxAggregateOutputType No

VoteGroupByOutputType

Name Type Nullable
id String Yes
tweet_id String Yes
user_id String Yes
vote_status String Yes
created_at DateTime Yes
_count VoteCountAggregateOutputType No
_min VoteMinAggregateOutputType No
_max VoteMaxAggregateOutputType No

AggregateRetweet

Name Type Nullable
_count RetweetCountAggregateOutputType No
_min RetweetMinAggregateOutputType No
_max RetweetMaxAggregateOutputType No

RetweetGroupByOutputType

Name Type Nullable
id String Yes
tweet_id String Yes
user_id String Yes
created_at DateTime Yes
_count RetweetCountAggregateOutputType No
_min RetweetMinAggregateOutputType No
_max RetweetMaxAggregateOutputType No

AggregateBookmark

Name Type Nullable
_count BookmarkCountAggregateOutputType No
_min BookmarkMinAggregateOutputType No
_max BookmarkMaxAggregateOutputType No

BookmarkGroupByOutputType

Name Type Nullable
id String Yes
tweet_id String Yes
user_id String Yes
created_at DateTime Yes
_count BookmarkCountAggregateOutputType No
_min BookmarkMinAggregateOutputType No
_max BookmarkMaxAggregateOutputType No


HashtagGroupByOutputType

Name Type Nullable
id String Yes
text String Yes
hashtag String Yes
score Int Yes
created_at DateTime Yes
_count HashtagCountAggregateOutputType No
_avg HashtagAvgAggregateOutputType No
_sum HashtagSumAggregateOutputType No
_min HashtagMinAggregateOutputType No
_max HashtagMaxAggregateOutputType No

AggregateMessage

Name Type Nullable
_count MessageCountAggregateOutputType No
_min MessageMinAggregateOutputType No
_max MessageMaxAggregateOutputType No

MessageGroupByOutputType

Name Type Nullable
id String Yes
text String No
image String No
created_at DateTime Yes
sender_id String Yes
receiver_id String Yes
conversation_id String Yes
_count MessageCountAggregateOutputType No
_min MessageMinAggregateOutputType No
_max MessageMaxAggregateOutputType No

AggregateConversation

Name Type Nullable
_count ConversationCountAggregateOutputType No
_min ConversationMinAggregateOutputType No
_max ConversationMaxAggregateOutputType No

ConversationGroupByOutputType

Name Type Nullable
id String Yes
created_at DateTime Yes
_count ConversationCountAggregateOutputType No
_min ConversationMinAggregateOutputType No
_max ConversationMaxAggregateOutputType No


CryptoLoginNonceGroupByOutputType

Name Type Nullable
userId String Yes
nonce String Yes
expires DateTime Yes
_count CryptoLoginNonceCountAggregateOutputType No
_min CryptoLoginNonceMinAggregateOutputType No
_max CryptoLoginNonceMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

VerificationTokenCountAggregateOutputType

Name Type Nullable
identifier Int Yes
token Int Yes
expires Int Yes
_all Int Yes

VerificationTokenMinAggregateOutputType

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenMaxAggregateOutputType

Name Type Nullable
identifier String No
token String No
expires DateTime No

AccountCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
type Int Yes
provider Int Yes
providerAccountId Int Yes
refresh_token Int Yes
access_token Int Yes
oath_token Int Yes
oauth_token_secret Int Yes
expires_at Int Yes
token_type Int Yes
scope Int Yes
id_token Int Yes
session_state Int Yes
_all Int Yes

AccountAvgAggregateOutputType

Name Type Nullable
expires_at Float No

AccountSumAggregateOutputType

Name Type Nullable
expires_at Int No

AccountMinAggregateOutputType

Name Type Nullable
id String No
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String No
access_token String No
oath_token String No
oauth_token_secret String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No

AccountMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String No
access_token String No
oath_token String No
oauth_token_secret String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No

SessionCountAggregateOutputType

Name Type Nullable
id Int Yes
sessionToken Int Yes
expires Int Yes
userId Int Yes
_all Int Yes

SessionMinAggregateOutputType

Name Type Nullable
id String No
sessionToken String No
expires DateTime No
userId String No

SessionMaxAggregateOutputType

Name Type Nullable
id String No
sessionToken String No
expires DateTime No
userId String No

UserCountOutputType

Name Type Nullable
accounts Int Yes
sessions Int Yes
tweets Int Yes
likes Int Yes
reputations Int Yes
votes Int Yes
followers Int Yes
following Int Yes
transactions Int Yes
retweets Int Yes
bookmarks Int Yes
sent_messages Int Yes
received_messages Int Yes
conversations Int Yes

UserCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
screen_name Int Yes
location Int Yes
url Int Yes
description Int Yes
detail Int Yes
protected Int Yes
verified Int Yes
email Int Yes
emailVerified Int Yes
google_id Int Yes
google_username Int Yes
google_email Int Yes
discord_id Int Yes
discord_username Int Yes
discord_email Int Yes
twitter_id Int Yes
twitter_username Int Yes
twitter_email Int Yes
image Int Yes
password Int Yes
role Int Yes
created_at Int Yes
followers_count Int Yes
friends_count Int Yes
favorites_count Int Yes
statuses_count Int Yes
reputation_count Int Yes
normalized_reputation Int Yes
profile_banner_url Int Yes
profile_image_url Int Yes
evm_address Int Yes
bech32_address Int Yes
pinned_tweet_id Int Yes
_all Int Yes

UserAvgAggregateOutputType

Name Type Nullable
followers_count Float No
friends_count Float No
favorites_count Float No
statuses_count Float No
reputation_count Float No
normalized_reputation Float No

UserSumAggregateOutputType

Name Type Nullable
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No

UserMinAggregateOutputType

Name Type Nullable
id String No
name String No
screen_name String No
location String No
url String No
description String No
detail String No
protected Boolean No
verified Boolean No
email String No
emailVerified DateTime No
google_id String No
google_username String No
google_email String No
discord_id String No
discord_username String No
discord_email String No
twitter_id String No
twitter_username String No
twitter_email String No
image String No
password String No
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String No
profile_image_url String No
evm_address String No
bech32_address String No
pinned_tweet_id String No

UserMaxAggregateOutputType

Name Type Nullable
id String No
name String No
screen_name String No
location String No
url String No
description String No
detail String No
protected Boolean No
verified Boolean No
email String No
emailVerified DateTime No
google_id String No
google_username String No
google_email String No
discord_id String No
discord_username String No
discord_email String No
twitter_id String No
twitter_username String No
twitter_email String No
image String No
password String No
role UserRole No
created_at DateTime No
followers_count Int No
friends_count Int No
favorites_count Int No
statuses_count Int No
reputation_count Float No
normalized_reputation Int No
profile_banner_url String No
profile_image_url String No
evm_address String No
bech32_address String No
pinned_tweet_id String No

FollowerCountAggregateOutputType

Name Type Nullable
id Int Yes
follower_id Int Yes
followed_id Int Yes
created_at Int Yes
_all Int Yes

FollowerMinAggregateOutputType

Name Type Nullable
id String No
follower_id String No
followed_id String No
created_at DateTime No

FollowerMaxAggregateOutputType

Name Type Nullable
id String No
follower_id String No
followed_id String No
created_at DateTime No

TransactionCountAggregateOutputType

Name Type Nullable
id Int Yes
user_id Int Yes
follower_id Int Yes
balance Int Yes
amount Int Yes
description Int Yes
created_at Int Yes
_all Int Yes

TransactionAvgAggregateOutputType

Name Type Nullable
balance Float No
amount Float No

TransactionSumAggregateOutputType

Name Type Nullable
balance Float No
amount Float No

TransactionMinAggregateOutputType

Name Type Nullable
id String No
user_id String No
follower_id String No
balance Float No
amount Float No
description String No
created_at DateTime No

TransactionMaxAggregateOutputType

Name Type Nullable
id String No
user_id String No
follower_id String No
balance Float No
amount Float No
description String No
created_at DateTime No

TweetCountOutputType

Name Type Nullable
media Int Yes
likes Int Yes
votes Int Yes
retweets Int Yes
quotes Int Yes
comments Int Yes
bookmarks Int Yes
pinned_by_users Int Yes

TweetCountAggregateOutputType

Name Type Nullable
id Int Yes
text Int Yes
source Int Yes
in_reply_to_user_id Int Yes
in_reply_to_screen_name Int Yes
is_quote_status Int Yes
quoted_status_id Int Yes
quote_count Int Yes
reply_count Int Yes
retweet_count Int Yes
favorite_count Int Yes
vote_count Int Yes
possibly_sensitive Int Yes
lang Int Yes
created_at Int Yes
author_id Int Yes
quoted_tweet_id Int Yes
in_reply_to_status_id Int Yes
_all Int Yes

TweetAvgAggregateOutputType

Name Type Nullable
quote_count Float No
reply_count Float No
retweet_count Float No
favorite_count Float No
vote_count Float No

TweetSumAggregateOutputType

Name Type Nullable
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No

TweetMinAggregateOutputType

Name Type Nullable
id String No
text String No
source String No
in_reply_to_user_id String No
in_reply_to_screen_name String No
is_quote_status Boolean No
quoted_status_id String No
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String No
in_reply_to_status_id String No

TweetMaxAggregateOutputType

Name Type Nullable
id String No
text String No
source String No
in_reply_to_user_id String No
in_reply_to_screen_name String No
is_quote_status Boolean No
quoted_status_id String No
quote_count Int No
reply_count Int No
retweet_count Int No
favorite_count Int No
vote_count Int No
possibly_sensitive Boolean No
lang String No
created_at DateTime No
author_id String No
quoted_tweet_id String No
in_reply_to_status_id String No

MediaCountAggregateOutputType

Name Type Nullable
id Int Yes
media_url Int Yes
media_type Int Yes
media_path Int Yes
tweet_id Int Yes
message_id Int Yes
_all Int Yes

MediaMinAggregateOutputType

Name Type Nullable
id String No
media_url String No
media_type String No
media_path String No
tweet_id String No
message_id String No

MediaMaxAggregateOutputType

Name Type Nullable
id String No
media_url String No
media_type String No
media_path String No
tweet_id String No
message_id String No

LikeCountAggregateOutputType

Name Type Nullable
id Int Yes
tweet_id Int Yes
user_id Int Yes
created_at Int Yes
_all Int Yes

LikeMinAggregateOutputType

Name Type Nullable
id String No
tweet_id String No
user_id String No
created_at DateTime No

LikeMaxAggregateOutputType

Name Type Nullable
id String No
tweet_id String No
user_id String No
created_at DateTime No

ReputationCountAggregateOutputType

Name Type Nullable
id Int Yes
user_id Int Yes
session_owner_id Int Yes
reputation_status Int Yes
created_at Int Yes
_all Int Yes

ReputationMinAggregateOutputType

Name Type Nullable
id String No
user_id String No
session_owner_id String No
reputation_status String No
created_at DateTime No

ReputationMaxAggregateOutputType

Name Type Nullable
id String No
user_id String No
session_owner_id String No
reputation_status String No
created_at DateTime No

VoteCountAggregateOutputType

Name Type Nullable
id Int Yes
tweet_id Int Yes
user_id Int Yes
vote_status Int Yes
created_at Int Yes
_all Int Yes

VoteMinAggregateOutputType

Name Type Nullable
id String No
tweet_id String No
user_id String No
vote_status String No
created_at DateTime No

VoteMaxAggregateOutputType

Name Type Nullable
id String No
tweet_id String No
user_id String No
vote_status String No
created_at DateTime No

RetweetCountAggregateOutputType

Name Type Nullable
id Int Yes
tweet_id Int Yes
user_id Int Yes
created_at Int Yes
_all Int Yes

RetweetMinAggregateOutputType

Name Type Nullable
id String No
tweet_id String No
user_id String No
created_at DateTime No

RetweetMaxAggregateOutputType

Name Type Nullable
id String No
tweet_id String No
user_id String No
created_at DateTime No

BookmarkCountAggregateOutputType

Name Type Nullable
id Int Yes
tweet_id Int Yes
user_id Int Yes
created_at Int Yes
_all Int Yes

BookmarkMinAggregateOutputType

Name Type Nullable
id String No
tweet_id String No
user_id String No
created_at DateTime No

BookmarkMaxAggregateOutputType

Name Type Nullable
id String No
tweet_id String No
user_id String No
created_at DateTime No

HashtagCountAggregateOutputType

Name Type Nullable
id Int Yes
text Int Yes
hashtag Int Yes
score Int Yes
created_at Int Yes
_all Int Yes

HashtagAvgAggregateOutputType

Name Type Nullable
score Float No

HashtagSumAggregateOutputType

Name Type Nullable
score Int No

HashtagMinAggregateOutputType

Name Type Nullable
id String No
text String No
hashtag String No
score Int No
created_at DateTime No

HashtagMaxAggregateOutputType

Name Type Nullable
id String No
text String No
hashtag String No
score Int No
created_at DateTime No

MessageCountOutputType

Name Type Nullable
media Int Yes

MessageCountAggregateOutputType

Name Type Nullable
id Int Yes
text Int Yes
image Int Yes
created_at Int Yes
sender_id Int Yes
receiver_id Int Yes
conversation_id Int Yes
_all Int Yes

MessageMinAggregateOutputType

Name Type Nullable
id String No
text String No
image String No
created_at DateTime No
sender_id String No
receiver_id String No
conversation_id String No

MessageMaxAggregateOutputType

Name Type Nullable
id String No
text String No
image String No
created_at DateTime No
sender_id String No
receiver_id String No
conversation_id String No

ConversationCountOutputType

Name Type Nullable
users Int Yes
messages Int Yes

ConversationCountAggregateOutputType

Name Type Nullable
id Int Yes
created_at Int Yes
_all Int Yes

ConversationMinAggregateOutputType

Name Type Nullable
id String No
created_at DateTime No

ConversationMaxAggregateOutputType

Name Type Nullable
id String No
created_at DateTime No

CryptoLoginNonceCountAggregateOutputType

Name Type Nullable
userId Int Yes
nonce Int Yes
expires Int Yes
_all Int Yes

CryptoLoginNonceMinAggregateOutputType

Name Type Nullable
userId String No
nonce String No
expires DateTime No

CryptoLoginNonceMaxAggregateOutputType

Name Type Nullable
userId String No
nonce String No
expires DateTime No